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>
|
2014-02-24 16:04:41 +01:00
|
|
|
<version>1.5.0-SNAPSHOT</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<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-04-28 07:47:16 +02:00
|
|
|
<production>false</production>
|
2013-07-24 16:43:00 +02:00
|
|
|
<jpa.show_sql>false</jpa.show_sql>
|
2013-03-22 19:43:19 +01:00
|
|
|
<jpa.datasource.name>java:openejb/Resource/My DataSource</jpa.datasource.name>
|
2013-06-19 18:44:56 +02:00
|
|
|
<jpa.cache>false</jpa.cache>
|
2013-07-12 01:31:10 +02:00
|
|
|
<jpa.table.encoding>utf8mb4</jpa.table.encoding>
|
2013-07-02 18:07:08 +02:00
|
|
|
<cache_service.class>com.commafeed.backend.cache.NoopCacheService</cache_service.class>
|
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>
|
2013-06-04 11:13:13 +02:00
|
|
|
<version>3.1</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
2013-08-01 05:19:08 +02:00
|
|
|
<source>1.6</source>
|
|
|
|
|
<target>1.6</target>
|
2013-03-20 20:33:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-07-11 09:30:10 +02:00
|
|
|
<version>2.4</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
2013-06-29 11:49:32 +02:00
|
|
|
<webResources combine.children="append">
|
2013-06-29 11:20:53 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>${basedir}/src/main/webapp/WEB-INF</directory>
|
|
|
|
|
<targetPath>WEB-INF</targetPath>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<includes>
|
2013-06-29 11:49:32 +02:00
|
|
|
<include>**/beans.xml</include>
|
|
|
|
|
</includes>
|
2013-06-29 11:20:53 +02:00
|
|
|
</resource>
|
2013-08-01 18:26:10 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>target/generated-sources/api-docs/</directory>
|
|
|
|
|
<targetPath>api/api-docs</targetPath>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>**/*</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
2013-06-29 11:20:53 +02:00
|
|
|
</webResources>
|
2013-03-20 20:33:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-22 19:43:19 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.openejb.maven</groupId>
|
|
|
|
|
<artifactId>tomee-maven-plugin</artifactId>
|
2013-12-12 09:03:31 +01:00
|
|
|
<version>1.5.2</version>
|
2013-03-22 19:43:19 +01:00
|
|
|
<configuration>
|
2013-11-29 16:10:43 +01:00
|
|
|
<tomeeVersion>1.6.0</tomeeVersion>
|
2013-03-22 19:43:19 +01:00
|
|
|
<tomeeClassifier>plus</tomeeClassifier>
|
|
|
|
|
<tomeeHttpPort>8082</tomeeHttpPort>
|
2013-04-28 07:47:16 +02: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>
|
2013-05-12 12:38:56 +02:00
|
|
|
<updateOnlyExtension>.properties</updateOnlyExtension>
|
2013-03-22 19:43:19 +01:00
|
|
|
<updateOnlyExtension>.html</updateOnlyExtension>
|
|
|
|
|
<updateOnlyExtension>.js</updateOnlyExtension>
|
|
|
|
|
<updateOnlyExtension>.css</updateOnlyExtension>
|
2013-05-06 13:10:23 +02:00
|
|
|
<updateOnlyExtension>.scss</updateOnlyExtension>
|
2013-03-22 19:43:19 +01:00
|
|
|
</updateOnlyExtensions>
|
|
|
|
|
</synchronization>
|
2013-03-26 16:02:26 +01:00
|
|
|
<libs>
|
2013-04-23 10:31:44 +02:00
|
|
|
<lib>org.hibernate:hibernate-entitymanager:4.1.11.Final</lib>
|
|
|
|
|
<lib>org.hibernate:hibernate-core:4.1.11.Final</lib>
|
2013-03-26 16:02:26 +01:00
|
|
|
<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>
|
2013-11-29 16:10:43 +01:00
|
|
|
<lib>org.javassist:javassist:3.15.0-GA</lib>
|
2014-02-20 10:22:15 +01:00
|
|
|
|
|
|
|
|
<lib>org.apache.openejb:openejb-bonecp:4.6.0</lib>
|
|
|
|
|
<lib>com.jolbox:bonecp:0.8.0.RELEASE</lib>
|
|
|
|
|
<lib>com.google.guava:guava:14.0.1</lib>
|
2013-06-05 11:58:35 +02:00
|
|
|
|
2013-03-26 16:02:26 +01:00
|
|
|
<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>
|
2013-07-19 16:32:08 +02:00
|
|
|
<lib>org.hsqldb:hsqldb:2.3.0</lib>
|
2013-10-29 13:26:15 +01:00
|
|
|
<lib>mysql:mysql-connector-java:5.1.26</lib>
|
2013-05-08 09:28:18 +02:00
|
|
|
<lib>postgresql:postgresql:9.1-901.jdbc4</lib>
|
2013-07-07 10:40:47 +02:00
|
|
|
<lib>net.sourceforge.jtds:jtds:1.3.1</lib>
|
2013-06-19 18:44:56 +02:00
|
|
|
|
|
|
|
|
<lib>org.infinispan:infinispan-core:5.1.4.FINAL</lib>
|
|
|
|
|
<lib>org.hibernate:hibernate-infinispan:4.1.11.Final</lib>
|
|
|
|
|
<lib>org.jgroups:jgroups:3.0.9.Final</lib>
|
|
|
|
|
<lib>org.jboss.marshalling:jboss-marshalling-river:1.3.11.GA</lib>
|
|
|
|
|
<lib>org.jboss.marshalling:jboss-marshalling:1.3.11.GA</lib>
|
|
|
|
|
<lib>org.codehaus.woodstox:woodstox-core-asl:4.1.1</lib>
|
|
|
|
|
<lib>org.codehaus.woodstox:stax2-api:3.1.1</lib>
|
|
|
|
|
<lib>org.rhq.helpers:rhq-pluginAnnotations:3.0.4</lib>
|
|
|
|
|
<lib>org.jboss.logmanager:jboss-logmanager:1.2.2.GA</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>
|
2013-06-04 11:13:13 +02:00
|
|
|
<version>2.2.3</version>
|
2013-04-10 10:14:27 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>process</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<processors>
|
|
|
|
|
<processor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</processor>
|
|
|
|
|
</processors>
|
2013-06-05 22:19:29 +02:00
|
|
|
<outputDirectory>target/generated-sources/metamodel</outputDirectory>
|
2013-04-10 10:14:27 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2013-08-01 17:11:57 +02:00
|
|
|
<execution>
|
|
|
|
|
<id>doc</id>
|
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>process</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<processors>
|
|
|
|
|
<processor>com.commafeed.frontend.APIGenerator</processor>
|
|
|
|
|
</processors>
|
|
|
|
|
<outputDirectory>target/generated-sources/api-docs</outputDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2013-04-10 10:14:27 +02:00
|
|
|
</executions>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
|
<artifactId>hibernate-jpamodelgen</artifactId>
|
2013-08-11 12:01:08 +02:00
|
|
|
<version>1.3.0.Final</version>
|
2013-04-10 10:14:27 +02:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
2013-07-19 16:30:27 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2013-12-12 13:11:07 +01:00
|
|
|
<version>2.1.7</version>
|
2013-07-19 16:30:27 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<generateGitPropertiesFile>false</generateGitPropertiesFile>
|
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-20 20:33:42 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2013-08-11 11:11:09 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>1.12.4</version>
|
2013-08-11 11:11:09 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<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>
|
2013-04-23 10:31:44 +02:00
|
|
|
<version>4.1.11.Final</version>
|
2013-03-26 16:02:26 +01:00
|
|
|
<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-06-29 11:20:53 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
2013-09-25 13:51:09 +02:00
|
|
|
<version>2.2.1</version>
|
2013-06-29 11:20:53 +02:00
|
|
|
</dependency>
|
2013-06-11 17:01:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
2013-11-12 08:53:05 +01:00
|
|
|
<version>3.0.7</version>
|
2013-06-11 17:01:21 +02:00
|
|
|
</dependency>
|
2013-06-05 11:58:35 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>16.0.1</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>1.9.1</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>1.9</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-11-29 16:10:43 +01:00
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
<version>3.2.1</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</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-05-19 12:54:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-math</artifactId>
|
|
|
|
|
<version>2.2</version>
|
|
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>1.3.1</version>
|
2013-03-25 12:24:00 +01:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.java.dev.rome</groupId>
|
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
2013-06-22 20:36:43 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>jdom</groupId>
|
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.rometools</groupId>
|
|
|
|
|
<artifactId>rome-opml</artifactId>
|
|
|
|
|
<version>1.0</version>
|
2013-06-22 20:36:43 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>rome</groupId>
|
|
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jdom</groupId>
|
|
|
|
|
<artifactId>jdom</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
2013-03-25 12:24:00 +01:00
|
|
|
</dependency>
|
2013-04-23 07:20:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.juniversalchardet</groupId>
|
|
|
|
|
<artifactId>juniversalchardet</artifactId>
|
|
|
|
|
<version>1.0.3</version>
|
|
|
|
|
</dependency>
|
2013-05-31 08:17:58 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>2.6.0</version>
|
2013-05-31 08:17:58 +02:00
|
|
|
</dependency>
|
2013-06-16 17:44:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cssparser</groupId>
|
|
|
|
|
<artifactId>cssparser</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>0.9.13</version>
|
2013-06-16 17:44:21 +02:00
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
2014-02-26 16:14:11 +01:00
|
|
|
<version>4.3.3</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2013-03-23 09:13:04 +01:00
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
2013-11-12 08:53:22 +01:00
|
|
|
<version>1.7.3</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-08-12 12:45:25 +02:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>2.3.1</version>
|
2013-03-23 09:13:04 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
2013-05-23 11:35:15 +02:00
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
2014-02-12 21:02:00 +01:00
|
|
|
<version>1.7.6</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-05-23 11:35:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
<version>1.2.17</version>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-core</artifactId>
|
2014-02-26 08:36:15 +01:00
|
|
|
<version>6.14.0</version>
|
2013-05-15 23:37:14 +02:00
|
|
|
</dependency>
|
2013-06-07 15:36:36 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-auth-roles</artifactId>
|
2014-02-26 08:36:15 +01:00
|
|
|
<version>6.14.0</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-06-07 15:36:36 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-extensions</artifactId>
|
2014-02-26 08:36:15 +01:00
|
|
|
<version>6.14.0</version>
|
2013-06-07 15:36:36 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.wicket</groupId>
|
|
|
|
|
<artifactId>wicket-cdi</artifactId>
|
2014-02-26 08:36:15 +01:00
|
|
|
<version>6.14.0</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-04-28 07:47:16 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>ro.isdc.wro4j</groupId>
|
|
|
|
|
<artifactId>wro4j-extensions</artifactId>
|
2014-02-28 13:43:30 +01:00
|
|
|
<version>1.7.3</version>
|
2013-04-28 07:47:16 +02:00
|
|
|
</dependency>
|
2013-04-15 14:47:37 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
2013-04-15 21:50:36 +02:00
|
|
|
<groupId>com.wordnik</groupId>
|
2013-08-01 13:35:04 +02:00
|
|
|
<artifactId>swagger-annotations_2.9.1</artifactId>
|
2013-07-02 15:34:57 +02:00
|
|
|
<version>1.2.5</version>
|
2013-04-15 14:47:37 +02:00
|
|
|
</dependency>
|
2013-08-01 17:11:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.wordnik</groupId>
|
|
|
|
|
<artifactId>swagger-jaxrs_2.9.1</artifactId>
|
|
|
|
|
<version>1.2.5</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2013-04-15 14:47:37 +02:00
|
|
|
|
2013-08-18 16:29:07 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.codahale.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-core</artifactId>
|
2014-02-26 16:14:11 +01:00
|
|
|
<version>3.0.2</version>
|
2013-08-18 16:29:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.codahale.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-json</artifactId>
|
2014-02-26 16:14:11 +01:00
|
|
|
<version>3.0.2</version>
|
2013-08-18 16:29:07 +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>
|
2013-04-03 16:03:55 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>ro.isdc.wro4j</groupId>
|
|
|
|
|
<artifactId>wro4j-maven-plugin</artifactId>
|
2014-02-28 13:43:30 +01:00
|
|
|
<version>1.7.3</version>
|
2013-04-03 16:03:55 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>js</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>jshint</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2013-04-26 22:34:08 +02:00
|
|
|
<targetGroups>app</targetGroups>
|
2014-02-28 13:43:30 +01:00
|
|
|
<options>devel,noarg,quotmark,laxcomma,laxbreak</options>
|
2013-04-03 16:03:55 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>css</id>
|
|
|
|
|
<phase>test</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>csslint</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2013-04-26 22:34:08 +02:00
|
|
|
<targetGroups>app</targetGroups>
|
2013-05-01 18:06:18 +02:00
|
|
|
<options>display-property-grouping,duplicate-properties,compatible-vendor-prefixes,vendor-prefix</options>
|
2013-04-03 16:03:55 +02:00
|
|
|
</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-07-12 01:31:10 +02:00
|
|
|
<jpa.table.encoding>utf8</jpa.table.encoding>
|
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-06-04 11:13:13 +02:00
|
|
|
<version>2.14.1</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<skip>true</skip>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-07-11 09:30:10 +02:00
|
|
|
<version>2.4</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>deployments</outputDirectory>
|
|
|
|
|
<warName>ROOT</warName>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2013-05-01 07:13:57 +02:00
|
|
|
|
2013-06-19 18:44:56 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>cache</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<jpa.cache>true</jpa.cache>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2013-06-29 11:20:53 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>redis</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<cache_service.class>com.commafeed.backend.cache.RedisCacheService</cache_service.class>
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2013-04-04 09:23:34 +02:00
|
|
|
<profile>
|
2013-04-26 22:34:08 +02:00
|
|
|
<id>mysql</id>
|
2013-04-04 09:23:34 +02:00
|
|
|
<properties>
|
|
|
|
|
<jpa.datasource.name>java:openejb/Resource/MySQL</jpa.datasource.name>
|
|
|
|
|
</properties>
|
2013-04-26 22:34:08 +02:00
|
|
|
</profile>
|
2013-05-08 09:28:18 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>pgsql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<jpa.datasource.name>java:openejb/Resource/PostgreSQL</jpa.datasource.name>
|
2013-07-07 10:32:37 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>mssql</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<jpa.datasource.name>java:openejb/Resource/MSSQL</jpa.datasource.name>
|
2013-05-08 09:28:18 +02:00
|
|
|
</properties>
|
|
|
|
|
</profile>
|
2013-04-26 22:34:08 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>prod</id>
|
2013-06-09 10:27:33 +04:00
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>skipTests</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
2013-04-26 22:34:08 +02:00
|
|
|
<properties>
|
2013-05-01 07:13:57 +02:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
2013-04-28 07:47:16 +02:00
|
|
|
<production>true</production>
|
2013-04-26 22:34:08 +02:00
|
|
|
<jpa.show_sql>false</jpa.show_sql>
|
|
|
|
|
</properties>
|
2013-05-01 07:13:57 +02:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.gmaven</groupId>
|
|
|
|
|
<artifactId>gmaven-plugin</artifactId>
|
2013-06-04 11:13:13 +02:00
|
|
|
<version>1.5</version>
|
2013-05-01 07:13:57 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2013-08-01 17:11:57 +02:00
|
|
|
<phase>process-classes</phase>
|
2013-05-01 07:13:57 +02:00
|
|
|
<goals>
|
|
|
|
|
<goal>execute</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<properties>
|
|
|
|
|
<source>${basedir}/src/main/webapp/templates</source>
|
|
|
|
|
<prefix>templates/</prefix>
|
|
|
|
|
<destination>${basedir}/target/generated-sources/angularjs/all-templates.html</destination>
|
2013-05-11 19:21:53 +02:00
|
|
|
<i18nPath>${basedir}/src/main/resources/i18n/</i18nPath>
|
2013-05-01 07:13:57 +02:00
|
|
|
</properties>
|
|
|
|
|
<scriptpath>
|
|
|
|
|
<element>${basedir}/src/main/script</element>
|
|
|
|
|
</scriptpath>
|
|
|
|
|
<source>
|
|
|
|
|
def source = project.properties['source'];
|
|
|
|
|
def prefix =
|
|
|
|
|
project.properties['prefix'];
|
|
|
|
|
def dest =
|
|
|
|
|
project.properties['destination'];
|
2013-05-11 19:21:53 +02:00
|
|
|
def i18n =
|
|
|
|
|
project.properties['i18nPath'];
|
2013-05-01 07:13:57 +02:00
|
|
|
new
|
2013-05-11 19:21:53 +02:00
|
|
|
HTMLConcat().concat(source,
|
|
|
|
|
prefix, dest, i18n);
|
2013-05-01 07:13:57 +02:00
|
|
|
</source>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2013-05-18 17:50:30 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>ro.isdc.wro4j</groupId>
|
|
|
|
|
<artifactId>wro4j-maven-plugin</artifactId>
|
2014-02-28 13:43:30 +01:00
|
|
|
<version>1.7.3</version>
|
2013-05-18 17:50:30 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>run</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
2013-05-19 12:54:15 +02:00
|
|
|
<targetGroups>all</targetGroups>
|
|
|
|
|
<wroManagerFactory>ro.isdc.wro.maven.plugin.manager.factory.ConfigurableWroManagerFactory</wroManagerFactory>
|
2013-05-25 13:35:22 +02:00
|
|
|
<destinationFolder>${project.build.directory}/${project.build.finalName}/static/</destinationFolder>
|
2013-05-18 17:50:30 +02:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-05-01 07:13:57 +02:00
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2013-07-11 09:30:10 +02:00
|
|
|
<version>2.4</version>
|
2013-05-01 07:13:57 +02:00
|
|
|
<configuration>
|
|
|
|
|
<webResources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>target/generated-sources/angularjs/</directory>
|
|
|
|
|
<targetPath>templates</targetPath>
|
2013-06-29 11:49:32 +02:00
|
|
|
<includes>
|
|
|
|
|
<include>**/*.html</include>
|
|
|
|
|
</includes>
|
2013-05-01 07:13:57 +02:00
|
|
|
</resource>
|
|
|
|
|
</webResources>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2013-04-04 09:23:34 +02:00
|
|
|
</profile>
|
2013-05-17 18:26:40 +02:00
|
|
|
<profile>
|
|
|
|
|
<id>i18n</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.codehaus.gmaven</groupId>
|
|
|
|
|
<artifactId>gmaven-plugin</artifactId>
|
2013-06-04 11:13:13 +02:00
|
|
|
<version>1.5</version>
|
2013-05-17 18:26:40 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
<configuration>
|
|
|
|
|
<properties>
|
|
|
|
|
<dir>${basedir}/src/main/resources/i18n/</dir>
|
|
|
|
|
</properties>
|
|
|
|
|
<scriptpath>
|
|
|
|
|
<element>${basedir}/src/main/script</element>
|
|
|
|
|
</scriptpath>
|
|
|
|
|
<source>
|
|
|
|
|
def dir = project.properties['dir'];
|
|
|
|
|
new
|
|
|
|
|
I18nGenerator().generate(dir);
|
|
|
|
|
</source>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
2013-03-20 20:33:42 +01:00
|
|
|
</profiles>
|
|
|
|
|
</project>
|