2014-02-25 10:28:22 +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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.rarchives.ripme</groupId>
|
|
|
|
<artifactId>ripme</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2017-10-12 11:34:23 +02:00
|
|
|
<version>1.5.13</version>
|
2014-02-25 10:28:22 +01:00
|
|
|
<name>ripme</name>
|
2014-02-27 10:28:23 +01:00
|
|
|
<url>http://rip.rarchives.com</url>
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2014-02-25 10:28:22 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<!-- jsoup HTML parser library @ http://jsoup.org/ -->
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
2015-02-06 08:58:17 +01:00
|
|
|
<version>1.8.1</version>
|
2014-02-25 10:28:22 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20140107</version>
|
|
|
|
</dependency>
|
2014-02-26 08:44:22 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-configuration</groupId>
|
|
|
|
<artifactId>commons-configuration</artifactId>
|
|
|
|
<version>1.7</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.17</version>
|
|
|
|
</dependency>
|
2014-02-27 10:28:23 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-cli</groupId>
|
|
|
|
<artifactId>commons-cli</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
</dependency>
|
2014-04-09 08:33:26 +02:00
|
|
|
<dependency>
|
2015-06-28 15:17:41 +02:00
|
|
|
<groupId>commons-io</groupId>
|
2014-04-09 08:33:26 +02:00
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>1.3.2</version>
|
|
|
|
</dependency>
|
2014-05-26 05:12:18 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<version>4.3.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpmime</artifactId>
|
|
|
|
<version>4.3.3</version>
|
|
|
|
</dependency>
|
2014-02-25 10:28:22 +01:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
2014-02-27 10:28:23 +01:00
|
|
|
<mainClass>com.rarchives.ripme.App</mainClass>
|
2014-04-05 10:39:10 +02:00
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
2014-02-25 10:28:22 +01:00
|
|
|
</manifest>
|
2014-02-27 10:28:23 +01:00
|
|
|
<manifestEntries>
|
|
|
|
<Class-Path>./config</Class-Path>
|
|
|
|
</manifestEntries>
|
2014-02-25 10:28:22 +01:00
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2017-01-14 22:11:36 +01:00
|
|
|
<plugin>
|
2017-02-19 09:37:45 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
2017-01-14 22:11:36 +01:00
|
|
|
</plugin>
|
2014-02-25 10:28:22 +01:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|