summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authoryvesf <yvesf-git@xapek.org>2011-03-29 14:11:54 +0200
committeryvesf <yvesf-git@xapek.org>2011-03-29 14:11:54 +0200
commit719c7b231cfc73201abab59ef38983c68ae5f6af (patch)
tree4b71edba3130b87a41c272447919db6595c74b34 /pom.xml
parent65142f17d67a6ce861560082a4bbc90262e4225c (diff)
downloaddhbw-calendar-719c7b231cfc73201abab59ef38983c68ae5f6af.tar.gz
dhbw-calendar-719c7b231cfc73201abab59ef38983c68ae5f6af.zip
SSL-Informationen
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml46
1 files changed, 20 insertions, 26 deletions
diff --git a/pom.xml b/pom.xml
index d3eb37b..1b2db39 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,9 @@
<version>1.0-SNAPSHOT</version>
<name>DHBW Calendar</name>
<url>http://maven.apache.org</url>
- <description>DHBW Calendar verbindet eine iCalendar kompatible Applikation mit dem Stundenplan in dem Studenteninformationssystem Dualis</description>
+ <description>DHBW Calendar verbindet eine iCalendar kompatible
+ Applikation mit dem Stundenplan in dem Studenteninformationssystem
+ Dualis</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -113,33 +115,25 @@
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
- <artifactId>maven-jetty-plugin</artifactId>
- <version>6.1.10</version>
+ <artifactId>jetty-maven-plugin</artifactId>
+ <version>7.0.0.pre5</version>
<configuration>
- <scanIntervalSeconds>1</scanIntervalSeconds>
- <stopKey>foo</stopKey>
- <stopPort>9999</stopPort>
+ <connectors>
+ <connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
+ <port>8080</port>
+ </connector>
+ <!-- <connector implementation="org.mortbay.jetty.ssl.SslSelectChannelConnector">
+ <port>8443</port> <keystore>${basedir}/server.keystore</keystore> <keyPassword>123456</keyPassword>
+ <password>123456</password> </connector> -->
+ </connectors>
</configuration>
- <executions>
- <execution>
- <id>start-jetty</id>
- <phase>pre-integration-test</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <scanIntervalSeconds>0</scanIntervalSeconds>
- <daemon>true</daemon>
- </configuration>
- </execution>
- <execution>
- <id>stop-jetty</id>
- <phase>post-integration-test</phase>
- <goals>
- <goal>stop</goal>
- </goals>
- </execution>
- </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty-ssl</artifactId>
+ <version>7.0.0.pre5</version>
+ </dependency>
+ </dependencies>
</plugin>
</plugins>