You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2008/03/22 14:00:46 UTC

svn commit: r639988 - in /myfaces/tobago/trunk/example/addressbook: pom.xml src/test/keystore/ src/test/keystore/jettykeystore

Author: bommel
Date: Sat Mar 22 06:00:45 2008
New Revision: 639988

URL: http://svn.apache.org/viewvc?rev=639988&view=rev
Log:
added ssl to addressbook

Added:
    myfaces/tobago/trunk/example/addressbook/src/test/keystore/
    myfaces/tobago/trunk/example/addressbook/src/test/keystore/jettykeystore
      - copied unchanged from r638966, myfaces/tobago/trunk/example/demo/src/test/keystore/jettykeystore
Modified:
    myfaces/tobago/trunk/example/addressbook/pom.xml

Modified: myfaces/tobago/trunk/example/addressbook/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/addressbook/pom.xml?rev=639988&r1=639987&r2=639988&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/addressbook/pom.xml (original)
+++ myfaces/tobago/trunk/example/addressbook/pom.xml Sat Mar 22 06:00:45 2008
@@ -257,6 +257,28 @@
   </dependencies>
   <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>
+    <profile>
       <id>myfaces</id>
       <activation>
         <property>