You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2009/05/26 15:54:33 UTC

svn commit: r778703 - /myfaces/tobago/trunk/example/addressbook/war/pom.xml

Author: lofwyr
Date: Tue May 26 13:54:33 2009
New Revision: 778703

URL: http://svn.apache.org/viewvc?rev=778703&view=rev
Log:
ssl

Modified:
    myfaces/tobago/trunk/example/addressbook/war/pom.xml

Modified: myfaces/tobago/trunk/example/addressbook/war/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook/war/pom.xml?rev=778703&r1=778702&r2=778703&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/addressbook/war/pom.xml (original)
+++ myfaces/tobago/trunk/example/addressbook/war/pom.xml Tue May 26 13:54:33 2009
@@ -99,6 +99,31 @@
     </plugins>
   </build>
 
+  <profiles>
+    <profile>
+      <id>ssl</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>maven-jetty-plugin</artifactId>
+            <configuration>
+              <connectors>
+                <connector implementation="org.mortbay.jetty.security.SslSocketConnector">
+                  <port>1443</port>
+                  <maxIdleTime>30000</maxIdleTime>
+                  <keystore>src/test/keystore/jettykeystore</keystore>
+                  <password>xxxxxx</password>
+                  <keyPassword>xxxxxx</keyPassword>
+                </connector>
+              </connectors>
+            </configuration>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.20/example/addressbook/war</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/myfaces/tobago/tags/tobago-1.0.20/example/addressbook/war</developerConnection>