[java-identity-provider COMMIT] /trunk/idp-war/pom.xml

noreply at shibboleth.net noreply at shibboleth.net
Sat Aug 24 20:54:55 EDT 2013


Author: tzeller
Date: Sat Aug 24 20:54:55 2013
New Revision: 4714

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4714&view=rev
Log:
Add jetty-maven-plugin to run the IdP from the idp-war directory via 'mvn jetty:run'. 

The path to /opt/idp must resolve the conf, flows, and templates directories, probably via a symlink from idp-distribution/target/idp-distribution to /opt/idp.

Modified:
    trunk/idp-war/pom.xml

Modified: trunk/idp-war/pom.xml
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-war/pom.xml?rev=4714&r1=4713&r2=4714&view=diff
==============================================================================
--- trunk/idp-war/pom.xml (original)
+++ trunk/idp-war/pom.xml Sat Aug 24 20:54:55 2013
@@ -110,6 +110,19 @@
                     </archive>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.eclipse.jetty</groupId>
+                <artifactId>jetty-maven-plugin</artifactId>
+                <version>9.0.5.v20130815</version>
+                <configuration>
+                    <scanIntervalSeconds>10</scanIntervalSeconds>
+                    <webApp>
+                        <contextPath>/idp</contextPath>
+                        <!-- Startup faster. https://jira.codehaus.org/browse/JETTY-1503 -->
+                        <webInfIncludeJarPattern>.*/.*jsp-api-[^/]\.jar$|./.*jsp-[^/]\.jar$|./.*taglibs[^/]*\.jar$</webInfIncludeJarPattern>
+                    </webApp>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 



More information about the commits mailing list