-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpom.xml
128 lines (116 loc) · 6.07 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<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>7.12.0</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>3.0.0</version>
<configuration>
<commitish>master</commitish>
<githubToken>${env.GITHUB_TOKEN}</githubToken>
<linuxAmd64Asset>${basedir}/releases/linux-amd64-release/target/nzbhydra2-${project.version}-amd64-linux.zip</linuxAmd64Asset>
<linuxArm64Asset>${basedir}/releases/linux-arm64-release/target/nzbhydra2-${project.version}-arm64-linux.zip</linuxArm64Asset>
<windowsAsset>${basedir}/releases/windows-release/target/nzbhydra2-${project.version}-windows.zip</windowsAsset>
<genericAsset>${basedir}/releases/generic-release/target/nzbhydra2-${project.version}-generic.zip</genericAsset>
<changelogYamlFile>${basedir}/core/src/main/resources/changelog.yaml</changelogYamlFile>
<changelogMdFile>${basedir}/changelog.md</changelogMdFile>
<windowsExecutable>${basedir}/releases/windows-release/include/NZBHydra2.exe</windowsExecutable>
<windowsConsoleExecutable>${basedir}/releases/windows-release/include/NZBHydra2 Console.exe</windowsConsoleExecutable>
<py3>${basedir}/other/wrapper/nzbhydra2wrapperPy3.py</py3>
<goWrapper>${basedir}/other/gowrapper/base/base.go</goWrapper>
<wrapperFile1>${basedir}/releases/windows-release/include/NZBHydra2 Console.exe</wrapperFile1>
<wrapperFile2>${basedir}/releases/windows-release/include/NZBHydra2.exe</wrapperFile2>
<wrapperFile3>${basedir}/other/wrapper/nzbhydra2wrapper.py</wrapperFile3>
<wrapperFile4>${basedir}/other/wrapper/nzbhydra2wrapperPy3.py</wrapperFile4>
<!-- <wrapperFile6>${basedir}/releases/linux-arm64-release/include/executables/nzbhydra2</wrapperFile6>-->
<wrapperHashesJsonFile>${basedir}/core/src/main/resources/wrapperHashes2.json</wrapperHashesJsonFile>
<tagName>v${project.version}</tagName>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>2.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<compilerArgs>
<arg>-parameters</arg>
</compilerArgs>
<source>17</source>
<target>17</target>
</configuration>
</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>
<maven.javadoc.skip>true</maven.javadoc.skip>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<spring.boot.version>3.1.5</spring.boot.version>
<spring.boot.devtools.version>3.1.5</spring.boot.devtools.version>
<spring.boot.maven.version>3.1.5</spring.boot.maven.version>
<spring.oxm.version>6.0.12</spring.oxm.version>
<spring-data-commons.version>3.1.5</spring-data-commons.version>
<jakarta.persistence-api.version>3.1.0</jakarta.persistence-api.version>
<jackson.version>2.15.0</jackson.version>
<lombok.version>1.18.30</lombok.version>
<logback.version>1.4.11</logback.version>
<guava.version>23.0</guava.version>
<junit.version>4.13.2</junit.version>
<okhttp.version>4.11.0</okhttp.version>
<logstash-logback-encoder.version>7.2</logstash-logback-encoder.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<commons-io.version>2.11.0</commons-io.version>
<flyway-core.version>9.10.2</flyway-core.version>
<jaxb.sun.core.version>2.3.0.1</jaxb.sun.core.version>
<jaxb.sun.impl.version>3.0.1</jaxb.sun.impl.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<uri-scheme-handler.version>2.0.0</uri-scheme-handler.version>
<javers-core.version>6.8.1</javers-core.version>
</properties>
</project>