mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
226 lines
5.9 KiB
XML
226 lines
5.9 KiB
XML
|
|
<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>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<resources>
|
||
|
|
<resource>
|
||
|
|
<directory>src/main/resources</directory>
|
||
|
|
</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>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>2.1.1</version>
|
||
|
|
<configuration>
|
||
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
||
|
|
</configuration>
|
||
|
|
</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>
|
||
|
|
|
||
|
|
<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>
|
||
|
|
<dependency>
|
||
|
|
<groupId>uaihebert.com</groupId>
|
||
|
|
<artifactId>EasyCriteria</artifactId>
|
||
|
|
<version>2.1.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.slf4j</groupId>
|
||
|
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
|
<version>1.7.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>log4j</groupId>
|
||
|
|
<artifactId>log4j</artifactId>
|
||
|
|
<version>1.2.17</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>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.java.dev.rome</groupId>
|
||
|
|
<artifactId>rome</artifactId>
|
||
|
|
<version>1.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.2.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>joda-time</groupId>
|
||
|
|
<artifactId>joda-time</artifactId>
|
||
|
|
<version>2.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.googlecode.lambdaj</groupId>
|
||
|
|
<artifactId>lambdaj</artifactId>
|
||
|
|
<version>2.3.3</version>
|
||
|
|
</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-extensions</artifactId>
|
||
|
|
<version>6.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.wicket</groupId>
|
||
|
|
<artifactId>wicket-datetime</artifactId>
|
||
|
|
<version>6.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.odlabs.wiquery</groupId>
|
||
|
|
<artifactId>wiquery-jquery-ui</artifactId>
|
||
|
|
<version>6.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.wicket</groupId>
|
||
|
|
<artifactId>wicket-cdi</artifactId>
|
||
|
|
<version>6.6.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.agilecoders.wicket</groupId>
|
||
|
|
<artifactId>wicket-bootstrap-core</artifactId>
|
||
|
|
<version>0.8.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.agilecoders.wicket</groupId>
|
||
|
|
<artifactId>wicket-bootstrap-extensions</artifactId>
|
||
|
|
<version>0.8.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.agilecoders.wicket</groupId>
|
||
|
|
<artifactId>wicket-bootstrap-themes</artifactId>
|
||
|
|
<version>0.8.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.vaynberg.wicket.select2</groupId>
|
||
|
|
<artifactId>wicket-select2</artifactId>
|
||
|
|
<version>2.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>de.agilecoders.wicket.webjars</groupId>
|
||
|
|
<artifactId>wicket-webjars</artifactId>
|
||
|
|
<version>0.2.0</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<profiles>
|
||
|
|
<profile>
|
||
|
|
<id>openshift</id>
|
||
|
|
<build>
|
||
|
|
<finalName>commafeed</finalName>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
|
<version>2.12</version>
|
||
|
|
<configuration>
|
||
|
|
<skip>true</skip>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<artifactId>maven-war-plugin</artifactId>
|
||
|
|
<version>2.1.1</version>
|
||
|
|
<configuration>
|
||
|
|
<outputDirectory>deployments</outputDirectory>
|
||
|
|
<warName>ROOT</warName>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</profile>
|
||
|
|
</profiles>
|
||
|
|
</project>
|