|
|
|
@ -82,18 +82,18 @@ |
|
|
|
|
|
|
|
|
|
|
|
<build> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
<artifactId>maven-compiler-plugin</artifactId> |
|
|
|
<configuration> |
|
|
|
<configuration> |
|
|
|
<source>1.5</source> |
|
|
|
<source>1.5</source> |
|
|
|
<target>1.5</target> |
|
|
|
<target>1.5</target> |
|
|
|
</configuration> |
|
|
|
</configuration> |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<groupId>org.mortbay.jetty</groupId> |
|
|
|
<groupId>org.mortbay.jetty</groupId> |
|
|
|
<artifactId>maven-jetty-plugin</artifactId> |
|
|
|
<artifactId>maven-jetty-plugin</artifactId> |
|
|
|
<version>6.1.5</version> |
|
|
|
<version>6.1.7</version> |
|
|
|
<configuration> |
|
|
|
<configuration> |
|
|
|
<contextPath>/tutorial</contextPath> |
|
|
|
<contextPath>/tutorial</contextPath> |
|
|
|
<connectors> |
|
|
|
<connectors> |
|
|
|
@ -103,9 +103,13 @@ |
|
|
|
</connector> |
|
|
|
</connector> |
|
|
|
<connector implementation="org.mortbay.jetty.security.SslSocketConnector"> |
|
|
|
<connector implementation="org.mortbay.jetty.security.SslSocketConnector"> |
|
|
|
<port>8443</port> |
|
|
|
<port>8443</port> |
|
|
|
<keystore>keystore</keystore> |
|
|
|
<keystore>server.jks</keystore> |
|
|
|
<password>password</password> |
|
|
|
<password>password</password> |
|
|
|
<keyPassword>password</keyPassword> |
|
|
|
<keyPassword>password</keyPassword> |
|
|
|
|
|
|
|
<truststore>server.jks</truststore> |
|
|
|
|
|
|
|
<trustPassword>password</trustPassword> |
|
|
|
|
|
|
|
<wantClientAuth>true</wantClientAuth> |
|
|
|
|
|
|
|
<needClientAuth>false</needClientAuth> |
|
|
|
</connector> |
|
|
|
</connector> |
|
|
|
</connectors> |
|
|
|
</connectors> |
|
|
|
</configuration> |
|
|
|
</configuration> |
|
|
|
|