2020-03-12 12:54:20 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2014-09-26 10:18:42 +02:00
|
|
|
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>
|
2020-09-02 21:24:21 +02:00
|
|
|
<version>2.6.0-SNAPSHOT</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
<name>CommaFeed</name>
|
2013-04-03 16:03:55 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
2022-07-14 13:17:47 +02:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
2019-04-22 20:30:06 +02:00
|
|
|
<guice.version>4.2.2</guice.version>
|
|
|
|
|
<querydsl.version>4.2.1</querydsl.version>
|
2022-01-02 08:22:57 +01:00
|
|
|
<rome.version>1.18.0</rome.version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</properties>
|
|
|
|
|
|
2022-07-14 13:17:47 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-dependencies</artifactId>
|
|
|
|
|
<version>2.1.1</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2014-08-21 08:54:18 +02:00
|
|
|
|
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>
|
2015-04-22 13:04:16 +02:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>pl.project13.maven</groupId>
|
|
|
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
2015-03-19 11:14:44 +01:00
|
|
|
<version>2.1.13</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>
|
2014-09-13 10:19:12 +02:00
|
|
|
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
|
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>
|
2022-01-02 18:42:53 +01:00
|
|
|
<version>3.2.4</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.kordamp.shade</groupId>
|
|
|
|
|
<artifactId>maven-shade-ext-transformers</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
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>
|
2020-03-12 12:54:20 +01:00
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
2014-08-08 16:49:02 +02:00
|
|
|
<mainClass>com.commafeed.CommaFeedApplication</mainClass>
|
|
|
|
|
</transformer>
|
2022-01-02 18:42:53 +01:00
|
|
|
<transformer implementation="org.kordamp.shade.resources.PropertiesFileTransformer">
|
|
|
|
|
<paths>
|
|
|
|
|
<path>rome.properties</path>
|
|
|
|
|
</paths>
|
|
|
|
|
<mergeStrategy>append</mergeStrategy>
|
|
|
|
|
</transformer>
|
2014-08-08 16:49:02 +02:00
|
|
|
</transformers>
|
2013-04-10 10:14:27 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2015-07-25 08:48:08 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.github.kongchen</groupId>
|
|
|
|
|
<artifactId>swagger-maven-plugin</artifactId>
|
2019-04-22 20:30:06 +02:00
|
|
|
<version>3.1.7</version>
|
2022-03-22 14:28:16 +01:00
|
|
|
<?m2e ignore?>
|
2015-07-25 08:48:08 +02:00
|
|
|
<configuration>
|
|
|
|
|
<apiSources>
|
|
|
|
|
<apiSource>
|
2019-05-01 19:56:48 +02:00
|
|
|
<locations>
|
|
|
|
|
<location>com.commafeed.frontend.resource</location>
|
|
|
|
|
<location>com.commafeed.frontend.model</location>
|
|
|
|
|
<location>com.commafeed.frontend.model.request</location>
|
|
|
|
|
</locations>
|
2015-07-25 08:48:08 +02:00
|
|
|
<swaggerDirectory>target/swagger</swaggerDirectory>
|
|
|
|
|
<basePath>/rest</basePath>
|
|
|
|
|
<info>
|
|
|
|
|
<title>CommaFeed</title>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</info>
|
2015-11-25 16:44:19 +01:00
|
|
|
<typesToSkip>
|
|
|
|
|
<typeToSkip>com.commafeed.backend.model.User</typeToSkip>
|
|
|
|
|
</typesToSkip>
|
2015-07-25 08:48:08 +02:00
|
|
|
</apiSource>
|
|
|
|
|
</apiSources>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>generate</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</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>
|
2017-10-12 12:10:04 +02:00
|
|
|
<version>1.6</version>
|
2022-03-22 14:28:16 +01:00
|
|
|
<?m2e ignore?>
|
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>
|
2015-07-25 08:48:08 +02:00
|
|
|
<phase>compile</phase>
|
2014-08-08 16:49:02 +02:00
|
|
|
<configuration>
|
2017-10-12 12:10:04 +02:00
|
|
|
<nodeVersion>v6.11.4</nodeVersion>
|
2016-08-23 12:11:26 +02:00
|
|
|
<npmVersion>3.10.6</npmVersion>
|
2014-08-08 16:49:02 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>npm install</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>npm</goal>
|
|
|
|
|
</goals>
|
2015-07-25 08:48:08 +02:00
|
|
|
<phase>compile</phase>
|
2016-01-08 16:12:15 +01:00
|
|
|
<configuration>
|
2016-08-23 12:11:26 +02:00
|
|
|
<arguments>install</arguments>
|
2016-01-08 16:12:15 +01:00
|
|
|
</configuration>
|
2014-08-08 16:49:02 +02:00
|
|
|
</execution>
|
2015-01-05 14:56:31 +01:00
|
|
|
<execution>
|
|
|
|
|
<id>bower install</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>bower</goal>
|
|
|
|
|
</goals>
|
2015-07-25 08:48:08 +02:00
|
|
|
<phase>compile</phase>
|
2015-01-05 14:56:31 +01:00
|
|
|
<configuration>
|
|
|
|
|
<arguments>install</arguments>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
2014-08-08 16:49:02 +02:00
|
|
|
<execution>
|
|
|
|
|
<id>gulp build</id>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>gulp</goal>
|
|
|
|
|
</goals>
|
2015-07-25 08:48:08 +02:00
|
|
|
<phase>compile</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>
|
2022-07-14 13:17:47 +02:00
|
|
|
<version>3.2.2</version>
|
2014-08-19 13:14:37 +02:00
|
|
|
<configuration>
|
|
|
|
|
<archive>
|
|
|
|
|
<manifest>
|
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
|
</manifest>
|
|
|
|
|
</archive>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2022-01-02 20:43:10 +01:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>validate</id>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<consoleOutput>true</consoleOutput>
|
|
|
|
|
<failsOnError>true</failsOnError>
|
|
|
|
|
<linkXRef>false</linkXRef>
|
|
|
|
|
<sourceDirectories>
|
|
|
|
|
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
|
|
|
|
|
</sourceDirectories>
|
|
|
|
|
<testSourceDirectories>
|
|
|
|
|
<testSourceDirectory>${project.build.testSourceDirectory}</testSourceDirectory>
|
|
|
|
|
</testSourceDirectories>
|
|
|
|
|
<includeTestSourceDirectory>true</includeTestSourceDirectory>
|
|
|
|
|
<configLocation>dev/checkstyle.xml</configLocation>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.diffplug.spotless</groupId>
|
|
|
|
|
<artifactId>spotless-maven-plugin</artifactId>
|
|
|
|
|
<version>1.27.0</version>
|
2022-03-22 14:28:16 +01:00
|
|
|
<?m2e ignore?>
|
2022-01-02 20:43:10 +01:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<phase>validate</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>check</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<lineEndings>WINDOWS</lineEndings>
|
|
|
|
|
<java>
|
|
|
|
|
<eclipse>
|
|
|
|
|
<file>${project.basedir}/dev/EclipseCodeFormatter.xml</file>
|
|
|
|
|
</eclipse>
|
|
|
|
|
</java>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2013-03-20 20:33:42 +01:00
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
2019-04-22 20:30:06 +02:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>only-eclipse</id>
|
|
|
|
|
<activation>
|
|
|
|
|
<property>
|
|
|
|
|
<name>m2e.version</name>
|
|
|
|
|
</property>
|
|
|
|
|
</activation>
|
|
|
|
|
<build>
|
|
|
|
|
<directory>target-ide</directory>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
|
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependencies>
|
2013-08-11 11:11:09 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>1.18.22</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>
|
2022-07-14 13:17:47 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
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>
|
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
|
|
|
|
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>
|
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>
|
2013-06-11 17:01:21 +02:00
|
|
|
</dependency>
|
2022-01-01 22:06:54 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
|
|
|
<artifactId>liquibase-core</artifactId>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
2014-08-11 15:11:01 +02:00
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-assets</artifactId>
|
|
|
|
|
</dependency>
|
2014-08-13 11:56:36 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard</groupId>
|
|
|
|
|
<artifactId>dropwizard-forms</artifactId>
|
|
|
|
|
</dependency>
|
2018-07-11 17:07:55 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-graphite</artifactId>
|
|
|
|
|
</dependency>
|
2021-01-30 22:40:31 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.metrics</groupId>
|
|
|
|
|
<artifactId>metrics-json</artifactId>
|
|
|
|
|
</dependency>
|
2022-07-14 13:46:08 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.dropwizard.modules</groupId>
|
|
|
|
|
<artifactId>dropwizard-web</artifactId>
|
|
|
|
|
<version>1.5.0</version>
|
|
|
|
|
</dependency>
|
2021-01-30 22:40:31 +01:00
|
|
|
|
2019-04-22 20:30:06 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
<version>2.3.0</version>
|
|
|
|
|
</dependency>
|
2014-10-28 16:31:49 +01:00
|
|
|
|
2022-07-14 13:17:47 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
|
|
|
<artifactId>jackson-module-afterburner</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2015-03-19 11:22:56 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
2015-06-04 15:05:23 +02:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2015-03-19 11:22:56 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
2014-08-11 15:11:01 +02:00
|
|
|
<dependency>
|
2015-07-09 16:03:38 +02:00
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
2019-05-01 23:33:55 +02:00
|
|
|
<version>1.5.22</version>
|
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>
|
2015-07-09 12:34:54 +02:00
|
|
|
<groupId>com.querydsl</groupId>
|
2014-08-08 16:49:02 +02:00
|
|
|
<artifactId>querydsl-apt</artifactId>
|
2014-10-28 14:27:15 +01:00
|
|
|
<version>${querydsl.version}</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
<classifier>hibernate</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2015-07-09 12:34:54 +02:00
|
|
|
<groupId>com.querydsl</groupId>
|
2014-08-08 16:49:02 +02:00
|
|
|
<artifactId>querydsl-jpa</artifactId>
|
2014-10-28 14:27:15 +01:00
|
|
|
<version>${querydsl.version}</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
2014-10-28 16:31:49 +01:00
|
|
|
|
2013-03-20 20:33:42 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>2.11.0</version>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2014-08-15 13:51:13 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>4.4</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2013-05-19 12:54:15 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
2014-10-17 08:30:53 +02:00
|
|
|
<artifactId>commons-math3</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>3.6.1</version>
|
2013-05-19 12:54:15 +02:00
|
|
|
</dependency>
|
2015-01-18 07:57:00 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-jexl</artifactId>
|
|
|
|
|
<version>2.1.1</version>
|
2015-02-20 17:10:02 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2015-01-18 07:57:00 +01:00
|
|
|
</dependency>
|
2022-07-13 16:01:10 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.passay</groupId>
|
|
|
|
|
<artifactId>passay</artifactId>
|
|
|
|
|
<version>1.6.1</version>
|
|
|
|
|
</dependency>
|
2014-10-28 16:31:49 +01:00
|
|
|
|
2013-03-25 12:24:00 +01:00
|
|
|
<dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
2015-04-29 12:45:05 +02:00
|
|
|
<version>2.7.2</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</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
|
|
|
|
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>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependency>
|
2022-01-02 12:45:56 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.rometools</groupId>
|
|
|
|
|
<artifactId>rome-modules</artifactId>
|
|
|
|
|
<version>${rome.version}</version>
|
|
|
|
|
</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>
|
2022-07-14 13:17:47 +02:00
|
|
|
|
2018-07-11 17:07:55 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.ahocorasick</groupId>
|
|
|
|
|
<artifactId>ahocorasick</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>0.6.3</version>
|
2018-07-11 17:07:55 +02:00
|
|
|
</dependency>
|
2014-08-08 16:49:02 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>1.14.3</version>
|
2014-08-08 16:49:02 +02:00
|
|
|
</dependency>
|
2013-04-23 07:20:21 +02:00
|
|
|
<dependency>
|
2014-11-24 14:55:20 +01:00
|
|
|
<groupId>com.ibm.icu</groupId>
|
|
|
|
|
<artifactId>icu4j</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>70.1</version>
|
2013-04-23 07:20:21 +02:00
|
|
|
</dependency>
|
2013-06-16 17:44:21 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.cssparser</groupId>
|
|
|
|
|
<artifactId>cssparser</artifactId>
|
2022-01-02 08:22:57 +01:00
|
|
|
<version>0.9.29</version>
|
2013-05-23 11:35:15 +02:00
|
|
|
</dependency>
|
2022-01-02 20:35:12 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>edu.uci.ics</groupId>
|
|
|
|
|
<artifactId>crawler4j</artifactId>
|
|
|
|
|
<version>3.5</version>
|
2022-03-22 16:20:55 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-01-02 20:35:12 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.gwt</groupId>
|
|
|
|
|
<artifactId>gwt-servlet</artifactId>
|
|
|
|
|
<version>2.9.0</version>
|
|
|
|
|
</dependency>
|
2022-01-02 20:54:28 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.hakky54</groupId>
|
|
|
|
|
<artifactId>sslcontext-kickstart</artifactId>
|
|
|
|
|
<version>7.2.0</version>
|
|
|
|
|
</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>
|
2015-06-04 14:52:15 +02:00
|
|
|
<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>
|
2014-08-08 16:49:02 +02:00
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
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>
|
2022-03-22 15:56:53 +01:00
|
|
|
<version>8.0.28</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>
|
2014-08-08 16:49:02 +02:00
|
|
|
<artifactId>postgresql</artifactId>
|
2022-03-22 11:49:07 +00:00
|
|
|
<version>42.3.3</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>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2014-10-07 23:14:03 -04:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2020-10-04 00:12:29 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mock-server</groupId>
|
|
|
|
|
<artifactId>mockserver-junit-rule</artifactId>
|
|
|
|
|
<version>5.11.1</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2013-03-20 20:33:42 +01:00
|
|
|
</dependencies>
|
2014-10-01 14:42:17 -03:00
|
|
|
</project>
|