forked from theotherp/nzbhydra2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
106 lines (97 loc) · 4.87 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<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>org.nzbhydra</groupId>
<artifactId>nzbhydra2</artifactId>
<packaging>pom</packaging>
<version>3.8.1-SNAPSHOT</version>
<modules>
<module>shared</module>
<module>other</module>
<module>core</module>
<module>tests</module>
<module>releases</module>
</modules>
<scm>
<connection>scm:git:[email protected]:theotherp/nzbhydra2.git</connection>
<developerConnection>scm:git:[email protected]:theotherp/nzbhydra2.git</developerConnection>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.nzbhydra</groupId>
<artifactId>github-release-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<commitish>master</commitish>
<githubReleasesUrl>https://api.github.com/repos/theotherp/nzbhydra2/releases</githubReleasesUrl>
<githubTokenFile>${basedir}/core/token.txt</githubTokenFile>
<linuxAsset>${basedir}/releases/linux-release/target/nzbhydra2-${project.version}-linux.zip</linuxAsset>
<windowsAsset>${basedir}/releases/windows-release/target/nzbhydra2-${project.version}-windows.zip</windowsAsset>
<changelogJsonFile>${basedir}/core/src/main/resources/changelog.json</changelogJsonFile>
<changelogMdFile>${basedir}/changelog.md</changelogMdFile>
<wrapperFile1>${basedir}/releases/linux-release/include/nzbhydra2</wrapperFile1>
<wrapperFile2>${basedir}/releases/windows-release/include/NZBHydra2 Console.exe</wrapperFile2>
<wrapperFile3>${basedir}/releases/windows-release/include/NZBHydra2.exe</wrapperFile3>
<wrapperFile4>${basedir}/other/wrapper/nzbhydra2wrapper.py</wrapperFile4>
<wrapperFile5>${basedir}/other/wrapper/nzbhydra2wrapperPy3.py</wrapperFile5>
<wrapperHashesJsonFile>${basedir}/core/src/main/resources/wrapperHashes.json</wrapperHashesJsonFile>
<tagName>v${project.version}</tagName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>SUREFIRE-1588</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<argLine>-Djdk.net.URLClassPath.disableClassPathURLCheck=true</argLine>
</properties>
</profile>
</profiles>
<properties>
<spring.boot.version>2.3.1.RELEASE</spring.boot.version>
<spring.oxm.version>5.2.7.RELEASE</spring.oxm.version>
<spring.test.version>5.2.0.RELEASE</spring.test.version>
<spring.security.test.version>5.3.3.RELEASE</spring.security.test.version>
<jackson.version>2.9.8</jackson.version>
<lombok.version>1.18.2</lombok.version>
<logback.version>1.2.3</logback.version>
<guava.version>23.0</guava.version>
<junit.version>4.12</junit.version>
<okhttp.version>3.14.6</okhttp.version>
<logstash-logback-encoder.version>5.1</logstash-logback-encoder.version>
<commons-lang3.version>3.7</commons-lang3.version>
<commons-io.version>2.6</commons-io.version>
<flyway-core.version>6.2.0</flyway-core.version>
<jaxb.sun.core.version>2.3.0</jaxb.sun.core.version>
<jaxb.sun.impl.version>2.3.0</jaxb.sun.impl.version>
<maven.compiler.plugin.version>3.6.2</maven.compiler.plugin.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<uri-scheme-handler.version>2.0.0</uri-scheme-handler.version>
</properties>
</project>