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 2016/04/11 09:35:36 UTC

svn commit: r1738533 - /myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml

Author: lofwyr
Date: Mon Apr 11 07:35:36 2016
New Revision: 1738533

URL: http://svn.apache.org/viewvc?rev=1738533&view=rev
Log:
 TOBAGO-1554 Tobago security should be integrated to tobago-core.jar
 * make demo running again with jetty (and security)

Modified:
    myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml

Modified: myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml?rev=1738533&r1=1738532&r2=1738533&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml (original)
+++ myfaces/tobago/branches/tobago-3.0.x/tobago-example/tobago-example-demo/pom.xml Mon Apr 11 07:35:36 2016
@@ -68,6 +68,28 @@
           <autoDelete>true</autoDelete>
         </configuration>
       </plugin>
+      <plugin>
+        <groupId>org.eclipse.jetty</groupId>
+        <artifactId>jetty-maven-plugin</artifactId>
+        <configuration>
+          <loginServices>
+            <loginService implementation="org.eclipse.jetty.security.HashLoginService">
+              <name>demo-realm</name>
+              <config>src/test/resources/realm.properties</config>
+            </loginService>
+          </loginServices>
+          <stopKey>stopKey</stopKey>
+          <stopPort>9999</stopPort>
+          <systemProperties>
+            <systemProperty>
+              <name>derby.stream.error.file</name>
+              <value>target/derby.log</value>
+            </systemProperty>
+          </systemProperties>
+        </configuration>
+        <dependencies>
+        </dependencies>
+      </plugin>
     </plugins>
   </build>