Permalink
Cannot retrieve contributors at this time
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.windsorsolutions.todos</groupId> | |
<artifactId>Todos</artifactId> | |
<packaging>war</packaging> | |
<version>1.0-SNAPSHOT</version> | |
<name>Todos</name> | |
<url>http://maven.apache.org</url> | |
<profiles> | |
<profile> | |
<id>default</id> | |
<activation> | |
<activeByDefault>true</activeByDefault> | |
</activation> | |
</profile> | |
<profile> | |
<id>test</id> | |
</profile> | |
</profiles> | |
<properties> | |
<org.springframework-version>3.1.3.RELEASE</org.springframework-version> | |
<jetty.stopKey>stopJetty</jetty.stopKey> | |
<jetty.stopPort>8081</jetty.stopPort> | |
<jetty.port>8080</jetty.port> | |
</properties> | |
<dependencies> | |
<!-- Wicket --> | |
<dependency> | |
<groupId>org.apache.wicket</groupId> | |
<artifactId>wicket-core</artifactId> | |
<version>6.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.wicket</groupId> | |
<artifactId>wicket-spring</artifactId> | |
<version>6.2.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.wicket</groupId> | |
<artifactId>wicket-extensions</artifactId> | |
<version>6.2.0</version> | |
</dependency> | |
<!-- Twitter Bootstrap for Wicket --> | |
<dependency> | |
<groupId>de.agilecoders.wicket</groupId> | |
<artifactId>bootstrap</artifactId> | |
<version>0.5.0</version> | |
</dependency> | |
<!-- Spring --> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-core</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-context</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-web</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-tx</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-orm</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-jpa</artifactId> | |
<version>2.0.8</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.data</groupId> | |
<artifactId>spring-data-jpa</artifactId> | |
<version>1.2.0.RELEASE</version> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework</groupId> | |
<artifactId>spring-test</artifactId> | |
<version>${org.springframework-version}</version> | |
</dependency> | |
<!-- Database and Persistence --> | |
<dependency> | |
<groupId>org.apache.derby</groupId> | |
<artifactId>derby</artifactId> | |
<version>10.9.1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate</groupId> | |
<artifactId>hibernate-entitymanager</artifactId> | |
<version>4.1.8.Final</version> | |
</dependency> | |
<dependency> | |
<groupId>org.hibernate.javax.persistence</groupId> | |
<artifactId>hibernate-jpa-2.0-api</artifactId> | |
<version>1.0.1.Final</version> | |
</dependency> | |
<!-- SLF4J for Wicket Logging --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-log4j12</artifactId> | |
<version>1.7.2</version> | |
</dependency> | |
<!-- Testing --> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.10</version> | |
</dependency> | |
<dependency> | |
<groupId>org.seleniumhq.selenium</groupId> | |
<artifactId>selenium-java</artifactId> | |
<version>2.31.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.github.detro.ghostdriver</groupId> | |
<artifactId>phantomjsdriver</artifactId> | |
<version>1.0.3-dev</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<resources> | |
<resource> | |
<directory>src/main/resources</directory> | |
</resource> | |
<resource> | |
<filtering>false</filtering> | |
<directory>src/main/java</directory> | |
<includes> | |
<include>**/*</include> | |
</includes> | |
<excludes> | |
<exclude>**/*.java</exclude> | |
</excludes> | |
</resource> | |
</resources> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>2.5.1</version> | |
<configuration> | |
<source>7</source> | |
<target>7</target> | |
<encoding>UTF-8</encoding> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-war-plugin</artifactId> | |
<version>2.3</version> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-dependency-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>install</id> | |
<phase>install</phase> | |
<goals> | |
<goal>sources</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.mortbay.jetty</groupId> | |
<artifactId>jetty-maven-plugin</artifactId> | |
<version>8.1.8.v20121106</version> | |
<configuration> | |
<webApp> | |
<contextPath>/</contextPath> | |
<descriptor>src/main/webapp/web.xml</descriptor> | |
<resourceBases> | |
<dir>src/main/webapp</dir> | |
<dir>src/test/webapp</dir> | |
</resourceBases> | |
</webApp> | |
<systemProperties | |
implementation="org.mortbay.jetty.plugin.SystemProperties"> | |
<systemProperty | |
implementation="org.mortbay.jetty.plugin.SystemProperty"> | |
<name>jetty.port</name> | |
<value>${jetty.port}</value> | |
</systemProperty> | |
</systemProperties> | |
</configuration> | |
<executions> | |
<execution> | |
<id>start-jetty</id> | |
<phase>pre-integration-test</phase> | |
<goals> | |
<goal>run</goal> | |
</goals> | |
<configuration> | |
<daemon>true</daemon> | |
<stopKey>${jetty.stopKey}</stopKey> | |
<stopPort>${jetty.stopPort}</stopPort> | |
</configuration> | |
</execution> | |
<execution> | |
<id>stop-jetty</id> | |
<phase>post-integration-test</phase> | |
<goals> | |
<goal>stop</goal> | |
</goals> | |
<configuration> | |
<stopKey>${jetty.stopKey}</stopKey> | |
<stopPort>${jetty.stopPort}</stopPort> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-surefire-plugin</artifactId> | |
<configuration> | |
<excludes> | |
<exclude>**/integration/**/*.*</exclude> | |
</excludes> | |
</configuration> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
<version>2.12.4</version> | |
<executions> | |
<execution> | |
<id>integration-tests</id> | |
<goals> | |
<goal>integration-test</goal> | |
</goals> | |
<phase>integration-test</phase> | |
<configuration> | |
<includes> | |
<include>**/integration/**/*.*</include> | |
</includes> | |
</configuration> | |
</execution> | |
<execution> | |
<id>verify</id> | |
<goals> | |
<goal>verify</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.zeroturnaround</groupId> | |
<artifactId>jrebel-maven-plugin</artifactId> | |
<version>1.1.3</version> | |
<executions> | |
<execution> | |
<id>generate-rebel-xml</id> | |
<phase>process-resources</phase> | |
<goals> | |
<goal>generate</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |