2013-03-20 20:33:42 +01:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
<name>CommaFeed</name>
|
2013-04-03 16:03:55 +02:00
|
|
|
|
2013-03-31 11:57:50 +02:00
|
|
|
<prerequisites>
|
|
|
|
|
<maven>3.0.0</maven>
|
|
|
|
|
</prerequisites>
|
2013-03-20 20:33:42 +01:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2013-03-22 19:43:19 +01:00
|
|
|
<jpa.datasource.name>java:openejb/Resource/My DataSource</jpa.datasource.name>
|
2013-04-14 09:31:32 +02:00
|
|
|
<jpa.dialect>org.hibernate.dialect.HSQLDialect</jpa.dialect>
|
2013-04-15 11:46:31 +02:00
|
|
|
<jpa.show_sql>false</jpa.show_sql>
|
2013-03-20 20:33:42 +01:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<build>
|
2013-03-22 19:43:19 +01:00
|
|
|
<finalName>commafeed</finalName>
|
2013-03-20 20:33:42 +01:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
2013-03-21 16:22:58 +01:00
|
|
|
<filtering>true</filtering>
|
2013-03-20 20:33:42 +01:00
|
|
|
</resource>
|
|
|
|
|
<resource>
|
|
|
|
|
<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>3.0</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.6</source>
|
|
|
|
|
<target>1.6</target>
|
2013-04-10 10:14:27 +02:00
|
|
|
<compilerArgument>-proc:none</compilerArgument>
|
2013-03-20 20:33:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-03-31 11:57:50 +02:00
|
|
|
<version>2.3</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-22 19:43:19 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.openejb.maven</groupId>
|
|
|
|
|
<artifactId>tomee-maven-plugin</artifactId>
|
2013-04-07 16:35:50 +02:00
|
|
|
<version>1.5.2</version>
|
2013-03-22 19:43:19 +01:00
|
|
|
<configuration>
|
2013-04-07 16:35:50 +02:00
|
|
|
<tomeeVersion>1.5.2</tomeeVersion>
|
2013-03-22 19:43:19 +01:00
|
|
|
<tomeeClassifier>plus</tomeeClassifier>
|
|
|
|
|
<tomeeHttpPort>8082</tomeeHttpPort>
|
2013-03-23 09:13:04 +01:00
|
|
|
<args>-Xmx1024m -XX:MaxPermSize=512m -XX:+CMSClassUnloadingEnabled</args>
|
2013-04-15 11:46:31 +02:00
|
|
|
<config>${project.basedir}/src/main/tomee/conf</config>
|
2013-03-22 19:43:19 +01:00
|
|
|
<reloadOnUpdate>true</reloadOnUpdate>
|
|
|
|
|
<synchronization>
|
|
|
|
|
<updateInterval>1</updateInterval>
|
|
|
|
|
<extensions>
|
|
|
|
|
<extension>.class</extension>
|
|
|
|
|
</extensions>
|
|
|
|
|
<updateOnlyExtensions>
|
|
|
|
|
<updateOnlyExtension>.html</updateOnlyExtension>
|
|
|
|
|
<updateOnlyExtension>.js</updateOnlyExtension>
|
|
|
|
|
<updateOnlyExtension>.css</updateOnlyExtension>
|
|
|
|
|
</updateOnlyExtensions>
|
|
|
|
|
</synchronization>
|
2013-03-26 16:02:26 +01:00
|
|
|
<libs>
|
|
|
|
|
<lib>org.hibernate:hibernate-entitymanager:4.1.10.Final</lib>
|
|
|
|
|
<lib>org.hibernate:hibernate-core:4.1.10.Final</lib>
|
|
|
|
|
<lib>org.hibernate.common:hibernate-commons-annotations:4.0.1.Final</lib>
|
|
|
|
|
<lib>org.hibernate:hibernate-validator:4.3.1.Final</lib>
|
|
|
|
|
<lib>org.jboss.logging:jboss-logging:3.1.3.GA</lib>
|
|
|
|
|
<lib>dom4j:dom4j:1.6.1</lib>
|
|
|
|
|
<lib>antlr:antlr:2.7.7</lib>
|
2013-04-09 17:04:35 +02:00
|
|
|
<lib>remove:openjpa-</lib>
|
2013-03-26 16:02:26 +01:00
|
|
|
<lib>remove:hsqldb</lib>
|
|
|
|
|
<lib>org.hsqldb:hsqldb:SNAPSHOT</lib>
|
2013-04-09 17:04:35 +02:00
|
|
|
<lib>mysql:mysql-connector-java:5.1.24</lib>
|
2013-03-26 16:02:26 +01:00
|
|
|
</libs>
|
2013-03-22 19:43:19 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-04-10 10:14:27 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.bsc.maven</groupId>
|
|
|
|
|
<artifactId>maven-processor-plugin</artifactId>
|
|
|
|
|
<version>2.2.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>process</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<processors>
|
|
|
|
|
<processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
|
|
|
|
|
</processors>
|
|
|
|
|
<outputDirectory>target/metamodel</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-jpamodelgen</artifactId>
|
|
|
|
|
<version>1.2.0.Final</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
|
<version>1.8</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>add-source</id>
|
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>add-source</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<sources>
|
|
|
|
|
<source>target/metamodel</source>
|
|
|
|
|
</sources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2013-04-12 15:40:55 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.searls</groupId>
|
|
|
|
|
<artifactId>jasmine-maven-plugin</artifactId>
|
|
|
|
|
<version>1.3.1.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>test</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<jsTestSrcDir>${project.basedir}/src/test/javascript/specs</jsTestSrcDir>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-20 20:33:42 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.spec</groupId>
|
|
|
|
|
<artifactId>jboss-javaee-6.0</artifactId>
|
|
|
|
|
<version>1.0.0.Final</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2013-03-26 16:02:26 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-entitymanager</artifactId>
|
|
|
|
|
<version>4.1.10.Final</version>
|
|
|
|
|
<scope>provided</scope>
|
2013-03-27 20:56:45 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2013-03-26 16:02:26 +01:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>uaihebert.com</groupId>
|
|
|
|
|
<artifactId>EasyCriteria</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>14.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
<version>1.8.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2013-03-31 11:57:50 +02:00
|
|
|
<version>1.3</version>
|
2013-03-25 12:24:00 +01:00
|
|
|
</dependency>
|
2013-03-23 09:13:04 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.lambdaj</groupId>
|
|
|
|
|
<artifactId>lambdaj</artifactId>
|
|
|
|
|
<version>2.3.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.java.dev.rome</groupId>
|
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.rometools</groupId>
|
|
|
|
|
<artifactId>rome-opml</artifactId>
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2013-04-05 16:31:42 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.oauth-client</groupId>
|
|
|
|
|
<artifactId>google-oauth-client-servlet</artifactId>
|
|
|
|
|
<version>1.14.1-beta</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.http-client</groupId>
|
|
|
|
|
<artifactId>google-http-client-jackson2</artifactId>
|
|
|
|
|
<version>1.14.1-beta</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.2.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-03-23 09:13:04 +01:00
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.7.2</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-03-23 09:13:04 +01:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2013-04-15 21:50:36 +02:00
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
|
<version>2.1.4</version>
|
2013-03-23 09:13:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
2013-03-31 11:57:50 +02:00
|
|
|
<version>1.7.5</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-core</artifactId>
|
|
|
|
|
<version>6.6.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-auth-roles</artifactId>
|
|
|
|
|
<version>6.6.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-cdi</artifactId>
|
|
|
|
|
<version>6.6.0</version>
|
|
|
|
|
</dependency>
|
2013-04-15 14:47:37 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
2013-04-15 21:50:36 +02:00
|
|
|
<groupId>com.wordnik</groupId>
|
|
|
|
|
<artifactId>swagger-jaxrs_2.9.1</artifactId>
|
|
|
|
|
<version>1.2.2</version>
|
2013-04-17 07:47:55 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jersey-server</artifactId>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jersey-servlet</artifactId>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jersey-core</artifactId>
|
|
|
|
|
<groupId>com.sun.jersey</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2013-04-15 14:47:37 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
2013-04-12 15:50:13 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.11</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
2013-03-22 22:47:56 +01:00
|
|
|
<profile>
|
|
|
|
|
<id>default</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
|
</activation>
|
|
|
|
|
<repositories>
|
2013-03-26 16:02:26 +01:00
|
|
|
<repository>
|
|
|
|
|
<id>hsqldb.snapshots</id>
|
|
|
|
|
<url>http://www.hsqldb.org/repos/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
2013-03-22 22:47:56 +01:00
|
|
|
</repositories>
|
2013-04-03 16:03:55 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>ro.isdc.wro4j</groupId>
|
|
|
|
|
<artifactId>wro4j-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.3</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>js</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jshint</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<options>indent,devel,noarg,quotmark</options>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>css</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>csslint</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<options>display-property-grouping,duplicate-properties,adjoining-classes,compatible-vendor-prefixes,vendor-prefix</options>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2013-03-22 22:47:56 +01:00
|
|
|
</profile>
|
2013-03-20 20:33:42 +01:00
|
|
|
<profile>
|
|
|
|
|
<id>openshift</id>
|
2013-03-21 16:22:58 +01:00
|
|
|
<properties>
|
2013-03-23 01:15:35 +01:00
|
|
|
<jpa.datasource.name>java:jboss/datasources/MysqlDS</jpa.datasource.name>
|
2013-03-27 10:56:39 +01:00
|
|
|
<jpa.show_sql>false</jpa.show_sql>
|
2013-04-14 09:31:32 +02:00
|
|
|
<jpa.dialect>com.commafeed.backend.MySQL5Dialect</jpa.dialect>
|
2013-03-21 16:22:58 +01:00
|
|
|
</properties>
|
2013-03-20 20:33:42 +01:00
|
|
|
<build>
|
|
|
|
|
<finalName>commafeed</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2013-03-31 11:57:50 +02:00
|
|
|
<version>2.14</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-03-31 11:57:50 +02:00
|
|
|
<version>2.3</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>deployments</outputDirectory>
|
|
|
|
|
<warName>ROOT</warName>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2013-04-04 09:23:34 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>jelastic</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<jpa.datasource.name>java:openejb/Resource/MySQL</jpa.datasource.name>
|
|
|
|
|
<jpa.show_sql>false</jpa.show_sql>
|
2013-04-14 09:31:32 +02:00
|
|
|
<jpa.dialect>com.commafeed.backend.MySQL5Dialect</jpa.dialect>
|
2013-04-04 09:23:34 +02:00
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>commafeed</finalName>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>2.14</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
|
<version>2.3</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>deployments</outputDirectory>
|
|
|
|
|
<warName>ROOT</warName>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2013-03-20 20:33:42 +01:00
|
|
|
</profiles>
|
|
|
|
|
</project>
|