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 2007/11/08 20:38:58 UTC

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

Author: bommel
Date: Thu Nov  8 11:38:56 2007
New Revision: 593271

URL: http://svn.apache.org/viewvc?rev=593271&view=rev
Log:
added jetty ssl example

Added:
    myfaces/tobago/trunk/example/demo/src/test/
    myfaces/tobago/trunk/example/demo/src/test/keystore/
    myfaces/tobago/trunk/example/demo/src/test/keystore/jettykeystore   (with props)
Modified:
    myfaces/tobago/trunk/example/demo/pom.xml

Modified: myfaces/tobago/trunk/example/demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/pom.xml?rev=593271&r1=593270&r2=593271&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/demo/pom.xml (original)
+++ myfaces/tobago/trunk/example/demo/pom.xml Thu Nov  8 11:38:56 2007
@@ -145,6 +145,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>
@@ -213,6 +235,11 @@
         </property>
       </activation>
       <dependencies>
+        <dependency>
+          <groupId>org.apache.myfaces.tobago</groupId>
+          <artifactId>tobago-message-fix</artifactId>
+          <version>${project.version}</version>
+        </dependency>
         <dependency>
           <groupId>javax.faces</groupId>
           <artifactId>jsf-api</artifactId>

Added: myfaces/tobago/trunk/example/demo/src/test/keystore/jettykeystore
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/demo/src/test/keystore/jettykeystore?rev=593271&view=auto
==============================================================================
Binary file - no diff available.

Propchange: myfaces/tobago/trunk/example/demo/src/test/keystore/jettykeystore
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream