Files
Athou_commafeed/pom.xml

403 lines
11 KiB
XML
Raw Normal View History

2014-09-26 10:18:42 +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
<modelVersion>4.0.0</modelVersion>
2013-03-20 20:33:42 +01:00
<groupId>com.commafeed</groupId>
<artifactId>commafeed</artifactId>
2014-12-12 08:31:18 +01:00
<version>2.2.0-SNAPSHOT</version>
<packaging>jar</packaging>
2013-03-20 20:33:42 +01:00
<name>CommaFeed</name>
2013-03-31 11:57:50 +02:00
<prerequisites>
<maven>3.0.5</maven>
2013-03-31 11:57:50 +02:00
</prerequisites>
2013-03-20 20:33:42 +01:00
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2014-12-12 08:31:18 +01:00
<java.version>1.8</java.version>
2015-04-08 15:14:41 +02:00
<dropwizard.version>0.8.1</dropwizard.version>
2015-04-29 12:45:05 +02:00
<guice.version>4.0</guice.version>
2015-06-04 14:55:36 +02:00
<querydsl.version>3.6.4</querydsl.version>
2014-10-28 14:27:15 +01:00
<rome.version>1.5.0</rome.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>
<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>
2015-04-22 13:04:16 +02:00
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<versionRange>[0.0.22,)</versionRange>
<goals>
<goal>npm</goal>
<goal>gulp</goal>
<goal>bower</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
2013-03-20 20:33:42 +01:00
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
2015-04-01 22:05:39 +02:00
<version>3.1</version>
2013-03-20 20:33:42 +01:00
<configuration>
2014-12-09 15:30:48 +01:00
<source>${java.version}</source>
<target>${java.version}</target>
2013-03-20 20:33:42 +01:00
</configuration>
</plugin>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
2015-03-19 11:14:44 +01:00
<version>2.1.13</version>
<executions>
<execution>
<goals>
<goal>revision</goal>
</goals>
</execution>
</executions>
2013-03-20 20:33:42 +01:00
<configuration>
<generateGitPropertiesFile>false</generateGitPropertiesFile>
<failOnNoGitDirectory>false</failOnNoGitDirectory>
2014-09-13 10:19:12 +02:00
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
2013-03-20 20:33:42 +01:00
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
2014-08-09 19:59:29 +02:00
<version>2.3</version>
<configuration>
2014-08-09 19:59:29 +02:00
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<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>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>0.0.22</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
2015-05-27 09:48:28 +02:00
<nodeVersion>v0.12.4</nodeVersion>
<npmVersion>2.10.1</npmVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
</execution>
2015-01-05 14:56:31 +01:00
<execution>
<id>bower install</id>
<goals>
<goal>bower</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>gulp build</id>
<goals>
<goal>gulp</goal>
</goals>
<phase>generate-resources</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
2015-03-19 11:14:44 +01:00
<version>2.6</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>
2015-04-29 12:45:05 +02:00
<version>1.16.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.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
2015-04-01 19:45:54 +02:00
<version>1.7.12</version>
2013-03-20 20:33:42 +01:00
</dependency>
2014-08-17 14:16:30 +02:00
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
2014-10-28 14:27:15 +01:00
<version>${guice.version}</version>
2014-08-17 14:16:30 +02:00
</dependency>
2014-10-26 12:25:44 +01:00
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
2014-10-28 14:27:15 +01:00
<version>${guice.version}</version>
2014-10-26 12:25:44 +01:00
</dependency>
2014-08-17 14:16:30 +02:00
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-core</artifactId>
<version>${dropwizard.version}</version>
</dependency>
2013-06-11 17:01:21 +02:00
<dependency>
<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>
<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>
<dependency>
<groupId>io.dropwizard</groupId>
<artifactId>dropwizard-forms</artifactId>
<version>${dropwizard.version}</version>
</dependency>
2014-10-28 16:31:49 +01:00
2015-03-19 11:22:56 +01:00
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
2015-06-04 14:55:36 +02:00
<version>4.5</version>
2015-03-19 11:22:56 +01:00
</dependency>
2014-08-11 15:11:01 +02:00
<dependency>
<groupId>com.wordnik</groupId>
2015-02-20 17:06:33 +01:00
<artifactId>swagger-jaxrs</artifactId>
2015-03-24 16:40:20 +01:00
<version>1.5.3-M1</version>
<exclusions>
<exclusion>
<groupId>javax.ws.rs</groupId>
2014-10-28 14:27:15 +01:00
<artifactId>jsr311-api</artifactId>
</exclusion>
</exclusions>
2013-03-20 20:33:42 +01:00
</dependency>
2014-10-28 16:31:49 +01:00
2013-03-20 20:33:42 +01:00
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
2014-10-28 14:27:15 +01:00
<version>${querydsl.version}</version>
<scope>provided</scope>
<classifier>hibernate</classifier>
</dependency>
<dependency>
<groupId>com.mysema.querydsl</groupId>
<artifactId>querydsl-jpa</artifactId>
2014-10-28 14:27:15 +01:00
<version>${querydsl.version}</version>
</dependency>
2014-10-28 16:31:49 +01:00
2015-01-18 07:57:00 +01:00
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
</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>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
2014-11-10 10:23:01 +01:00
<version>1.10</version>
2013-03-20 20:33:42 +01:00
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
2014-10-17 08:30:53 +02:00
<artifactId>commons-math3</artifactId>
2015-04-29 12:45:05 +02:00
<version>3.5</version>
</dependency>
2015-01-18 07:57:00 +01:00
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-jexl</artifactId>
<version>2.1.1</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
2015-01-18 07:57:00 +01:00
</dependency>
2014-10-28 16:31:49 +01:00
2013-03-25 12:24:00 +01:00
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
2015-04-29 12:45:05 +02:00
<version>2.7.2</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
2015-04-29 12:45:05 +02:00
<version>1.5.3</version>
2013-03-25 12:24:00 +01:00
</dependency>
2014-10-28 16:31:49 +01:00
<!-- upgrade jdom to 2.0.5 for performance reasons (https://github.com/hunterhacker/jdom/issues/112) -->
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-10-28 14:27:15 +01:00
<version>${rome.version}</version>
<exclusions>
<exclusion>
<artifactId>jdom</artifactId>
<groupId>org.jdom</groupId>
</exclusion>
</exclusions>
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-10-28 14:27:15 +01:00
<version>${rome.version}</version>
2013-03-25 12:24:00 +01:00
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom2</artifactId>
2015-02-17 09:06:07 +01:00
<version>2.0.6</version>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
2015-04-29 12:45:05 +02:00
<version>1.8.2</version>
</dependency>
<dependency>
2014-11-24 14:55:20 +01:00
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
2015-04-08 15:14:41 +02:00
<version>55.1</version>
</dependency>
<dependency>
<groupId>net.sourceforge.cssparser</groupId>
<artifactId>cssparser</artifactId>
2015-06-04 14:55:36 +02:00
<version>0.9.16</version>
2013-05-23 11:35:15 +02:00
</dependency>
2013-03-20 20:33:42 +01:00
2015-06-04 12:28:20 +02:00
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-youtube</artifactId>
2015-06-04 14:55:36 +02:00
<version>v3-rev139-1.20.0</version>
<exclusions>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava-jdk5</artifactId>
</exclusion>
</exclusions>
2015-06-04 12:28:20 +02:00
</dependency>
2013-03-20 20:33:42 +01:00
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
2015-04-29 12:45:05 +02:00
<version>1.4.187</version>
</dependency>
2013-03-20 20:33:42 +01:00
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
2015-04-01 19:45:54 +02:00
<version>5.1.35</version>
2013-03-20 20:33:42 +01:00
</dependency>
2013-06-07 15:36:36 +02:00
<dependency>
2014-09-26 10:18:42 +02:00
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1201-jdbc41</version>
2013-06-07 15:36:36 +02:00
</dependency>
2013-03-20 20:33:42 +01:00
<dependency>
<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>
2014-12-06 17:21:06 +01:00
<version>4.12</version>
2013-04-12 15:50:13 +02:00
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
2015-06-04 14:55:36 +02:00
<version>2.0.11-beta</version>
<scope>test</scope>
</dependency>
2013-03-20 20:33:42 +01:00
</dependencies>
2014-10-01 14:42:17 -03:00
</project>