2014-08-21 09:04:01 +02: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">
|
2013-03-20 20:33:42 +01:00
|
|
|
|
2014-08-08 16:49:02 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2013-03-20 20:33:42 +01:00
|
|
|
<groupId>com.commafeed</groupId>
|
|
|
|
|
<artifactId>commafeed</artifactId>
|
2014-08-21 09:04:10 +02:00
|
|
|
<version>2.0.3-SNAPSHOT</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
<packaging>jar</packaging>
|
2013-03-20 20:33:42 +01:00
|
|
|
<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>
|
2014-08-08 16:49:02 +02:00
|
|
|
<dropwizard.version>0.7.1</dropwizard.version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</properties>
|
|
|
|
|
|
2014-08-21 08:54:18 +02:00
|
|
|
<scm>
|
2014-08-21 09:01:54 +02:00
|
|
|
<connection>scm:git:https://github.com/Athou/commafeed.git</connection>
|
|
|
|
|
<developerConnection>scm:git:https://github.com/Athou/commafeed.git</developerConnection>
|
2014-08-21 08:54:18 +02:00
|
|
|
<url>https://github.com/Athou/commafeed</url>
|
|
|
|
|
</scm>
|
|
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<build>
|
2014-08-11 05:33:49 +02: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>
|
|
|
|
|
</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>
|
2014-08-08 16:49:02 +02:00
|
|
|
<source>1.7</source>
|
|
|
|
|
<target>1.7</target>
|
2013-03-20 20:33:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2014-08-19 13:14:48 +02:00
|
|
|
<version>2.1.10</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>revision</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2013-03-20 20:33:42 +01:00
|
|
|
<configuration>
|
2014-08-08 16:49:02 +02:00
|
|
|
<generateGitPropertiesFile>false</generateGitPropertiesFile>
|
|
|
|
|
<failOnNoGitDirectory>false</failOnNoGitDirectory>
|
2013-03-20 20:33:42 +01:00
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-22 19:43:19 +01:00
|
|
|
<plugin>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
2014-08-09 19:59:29 +02:00
|
|
|
<version>2.3</version>
|
2013-03-22 19:43:19 +01:00
|
|
|
<configuration>
|
2014-08-09 19:59:29 +02:00
|
|
|
<createDependencyReducedPom>false</createDependencyReducedPom>
|
2014-08-08 16:49:02 +02:00
|
|
|
<filters>
|
|
|
|
|
<filter>
|
|
|
|
|
<artifact>*:*</artifact>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>META-INF/*.SF</exclude>
|
|
|
|
|
<exclude>META-INF/*.DSA</exclude>
|
|
|
|
|
<exclude>META-INF/*.RSA</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</filter>
|
|
|
|
|
</filters>
|
2013-03-22 19:43:19 +01:00
|
|
|
</configuration>
|
2013-04-10 10:14:27 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2014-08-08 16:49:02 +02:00
|
|
|
<phase>package</phase>
|
2013-04-10 10:14:27 +02:00
|
|
|
<goals>
|
2014-08-08 16:49:02 +02:00
|
|
|
<goal>shade</goal>
|
2013-04-10 10:14:27 +02:00
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2014-08-08 16:49:02 +02:00
|
|
|
<transformers>
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
|
|
|
|
<mainClass>com.commafeed.CommaFeedApplication</mainClass>
|
|
|
|
|
</transformer>
|
|
|
|
|
</transformers>
|
2013-04-10 10:14:27 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2013-07-19 16:30:27 +02:00
|
|
|
<plugin>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>com.github.eirslett</groupId>
|
|
|
|
|
<artifactId>frontend-maven-plugin</artifactId>
|
2014-08-19 13:14:48 +02:00
|
|
|
<version>0.0.16</version>
|
2013-07-19 16:30:27 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2014-08-08 16:49:02 +02:00
|
|
|
<id>install node and npm</id>
|
2013-07-19 16:30:27 +02:00
|
|
|
<goals>
|
2014-08-08 16:49:02 +02:00
|
|
|
<goal>install-node-and-npm</goal>
|
2013-07-19 16:30:27 +02:00
|
|
|
</goals>
|
2014-08-08 16:49:02 +02:00
|
|
|
<phase>generate-resources</phase>
|
|
|
|
|
<configuration>
|
|
|
|
|
<nodeVersion>v0.10.30</nodeVersion>
|
|
|
|
|
<npmVersion>1.3.8</npmVersion>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>npm install</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>npm</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>gulp build</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>gulp</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>generate-resources</phase>
|
2013-07-19 16:30:27 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2014-08-19 13:14:37 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<version>2.5</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</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-09-11 15:45:00 +02:00
|
|
|
<version>1.14.6</version>
|
2013-08-11 11:11:09 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<version>1.7.7</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
|
2014-08-17 14:16:30 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
|
<artifactId>guice</artifactId>
|
|
|
|
|
<version>3.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2013-03-26 16:02:26 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-core</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
2013-03-26 16:02:26 +01:00
|
|
|
</dependency>
|
2013-06-11 17:01:21 +02:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-hibernate</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
2013-06-11 17:01:21 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-client</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-migrations</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-08-11 15:11:01 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-assets</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
|
|
|
|
</dependency>
|
2014-08-13 11:56:36 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-forms</artifactId>
|
|
|
|
|
<version>${dropwizard.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
</dependency>
|
2014-08-11 15:11:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.wordnik</groupId>
|
|
|
|
|
<artifactId>swagger-jaxrs_2.10</artifactId>
|
2014-09-11 15:45:00 +02:00
|
|
|
<version>1.3.8</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
|
<groupId>javassist</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
|
|
|
<artifactId>querydsl-apt</artifactId>
|
2014-09-11 15:45:00 +02:00
|
|
|
<version>3.4.3</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
<classifier>hibernate</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mysema.querydsl</groupId>
|
|
|
|
|
<artifactId>querydsl-jpa</artifactId>
|
2014-09-11 15:45:00 +02:00
|
|
|
<version>3.4.3</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-08-15 13:51:13 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
|
<version>4.0</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.9</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</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>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
2014-08-12 12:02:47 +02:00
|
|
|
<version>2.5.2</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
|
|
<version>1.5.2</version>
|
2013-03-25 12:24:00 +01:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-15 13:51:13 +02:00
|
|
|
<groupId>com.rometools</groupId>
|
2013-03-20 20:33:42 +01:00
|
|
|
<artifactId>rome</artifactId>
|
2014-08-15 13:51:13 +02:00
|
|
|
<version>1.5.0</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
2014-08-15 13:51:13 +02:00
|
|
|
<groupId>com.rometools</groupId>
|
2013-03-25 12:24:00 +01:00
|
|
|
<artifactId>rome-opml</artifactId>
|
2014-08-15 13:51:13 +02:00
|
|
|
<version>1.5.0</version>
|
2013-03-25 12:24:00 +01:00
|
|
|
</dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.7.3</version>
|
|
|
|
|
</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-06-16 17:44:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cssparser</groupId>
|
|
|
|
|
<artifactId>cssparser</artifactId>
|
2014-08-08 16:49:02 +02:00
|
|
|
<version>0.9.14</version>
|
2013-05-23 11:35:15 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
|
|
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
<version>1.4.181</version>
|
2013-05-15 23:37:14 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2014-08-12 12:02:47 +02:00
|
|
|
<version>5.1.32</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-06-07 15:36:36 +02:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
<version>9.1-901-1.jdbc4</version>
|
2013-06-07 15:36:36 +02:00
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>net.sourceforge.jtds</groupId>
|
|
|
|
|
<artifactId>jtds</artifactId>
|
|
|
|
|
<version>1.3.1</version>
|
2014-03-01 18:34:10 +01:00
|
|
|
</dependency>
|
2014-02-28 14:35:05 +01:00
|
|
|
|
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>
|
2014-08-08 16:49:02 +02:00
|
|
|
</project>
|