Skip to content

Commit 4359b18

Browse files
Merge pull request #28 from POE-Addon-Launcher/2.0
2.0 Release
2 parents 0b4c2b0 + 7bef3ed commit 4359b18

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4739
-29
lines changed

pom.xml

Lines changed: 145 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -4,38 +4,17 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>RizlimDev</groupId>
8-
<artifactId>PoE-Addon-Manager-Launcher</artifactId>
9-
<version>1.7</version>
7+
<groupId>PAL-Launcher</groupId>
8+
<artifactId>rewrite</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<kotlin.version>1.3.0</kotlin.version>
13+
</properties>
1014

11-
<dependencies>
12-
<dependency>
13-
<groupId>com.fasterxml.jackson.core</groupId>
14-
<artifactId>jackson-databind</artifactId>
15-
<version>2.9.6</version>
16-
</dependency>
17-
<dependency>
18-
<groupId>junit</groupId>
19-
<artifactId>junit</artifactId>
20-
<version>4.12</version>
21-
</dependency>
22-
<dependency>
23-
<groupId>org.kohsuke</groupId>
24-
<artifactId>github-api</artifactId>
25-
<version>1.93</version>
26-
</dependency>
27-
</dependencies>
2815

2916
<build>
3017
<plugins>
31-
<plugin>
32-
<groupId>org.apache.maven.plugins</groupId>
33-
<artifactId>maven-compiler-plugin</artifactId>
34-
<configuration>
35-
<source>8</source>
36-
<target>8</target>
37-
</configuration>
38-
</plugin>
3918
<plugin>
4019
<groupId>org.apache.maven.plugins</groupId>
4120
<artifactId>maven-jar-plugin</artifactId>
@@ -62,8 +41,145 @@
6241
</descriptorRefs>
6342
</configuration>
6443
</plugin>
44+
<plugin>
45+
<groupId>org.jetbrains.kotlin</groupId>
46+
<artifactId>kotlin-maven-plugin</artifactId>
47+
<version>${kotlin.version}</version>
48+
<executions>
49+
<execution>
50+
<id>compile</id>
51+
<phase>compile</phase>
52+
<goals>
53+
<goal>compile</goal>
54+
</goals>
55+
</execution>
56+
<execution>
57+
<id>test-compile</id>
58+
<phase>test-compile</phase>
59+
<goals>
60+
<goal>test-compile</goal>
61+
</goals>
62+
</execution>
63+
</executions>
64+
<configuration>
65+
<jvmTarget>1.8</jvmTarget>
66+
</configuration>
67+
</plugin>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-compiler-plugin</artifactId>
71+
<version>3.8.0</version>
72+
<executions>
73+
<execution>
74+
<id>compile</id>
75+
<phase>compile</phase>
76+
<goals>
77+
<goal>compile</goal>
78+
</goals>
79+
</execution>
80+
<execution>
81+
<id>testCompile</id>
82+
<phase>test-compile</phase>
83+
<goals>
84+
<goal>testCompile</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
<configuration>
89+
<source>8</source>
90+
<target>8</target>
91+
</configuration>
92+
</plugin>
93+
<plugin>
94+
<groupId>org.jetbrains.kotlin</groupId>
95+
<artifactId>kotlin-maven-plugin</artifactId>
96+
<version>${kotlin.version}</version>
97+
<executions>
98+
<execution>
99+
<id>compile</id>
100+
<phase>process-sources</phase>
101+
<goals>
102+
<goal>compile</goal>
103+
</goals>
104+
<configuration>
105+
<sourceDirs>
106+
<source>src/main/java</source>
107+
<source>src/main/kotlin</source>
108+
<source>src/main/resources</source>
109+
</sourceDirs>
110+
</configuration>
111+
</execution>
112+
<execution>
113+
<id>test-compile</id>
114+
<phase>process-test-sources</phase>
115+
<goals>
116+
<goal>test-compile</goal>
117+
</goals>
118+
<configuration>
119+
<sourceDirs>
120+
<source>src/test/java</source>
121+
<source>src/test/kotlin</source>
122+
<source>src/test/resources</source>
123+
</sourceDirs>
124+
</configuration>
125+
</execution>
126+
</executions>
127+
</plugin>
65128
</plugins>
66-
67129
</build>
68130

131+
<dependencies>
132+
<dependency>
133+
<groupId>com.fasterxml.jackson.core</groupId>
134+
<artifactId>jackson-databind</artifactId>
135+
<version>2.9.6</version>
136+
</dependency>
137+
<dependency>
138+
<groupId>com.fasterxml.jackson.module</groupId>
139+
<artifactId>jackson-module-kotlin</artifactId>
140+
<version>2.9.4.1</version>
141+
</dependency>
142+
<dependency>
143+
<groupId>org.kohsuke</groupId>
144+
<artifactId>github-api</artifactId>
145+
<version>1.93</version>
146+
</dependency>
147+
<dependency>
148+
<groupId>org.jetbrains.kotlin</groupId>
149+
<artifactId>kotlin-stdlib-jdk8</artifactId>
150+
<version>${kotlin.version}</version>
151+
</dependency>
152+
<dependency>
153+
<groupId>org.jetbrains.kotlin</groupId>
154+
<artifactId>kotlin-test-junit</artifactId>
155+
<version>${kotlin.version}</version>
156+
<scope>test</scope>
157+
</dependency>
158+
<dependency>
159+
<groupId>org.jetbrains.kotlinx</groupId>
160+
<artifactId>kotlinx-coroutines-core</artifactId>
161+
<version>1.0.1</version>
162+
</dependency>
163+
<dependency>
164+
<groupId>org.jetbrains.kotlinx</groupId>
165+
<artifactId>kotlinx-coroutines-javafx</artifactId>
166+
<version>1.0.1</version>
167+
</dependency>
168+
<dependency>
169+
<groupId>org.jetbrains.kotlin</groupId>
170+
<artifactId>kotlin-stdlib-jdk8</artifactId>
171+
<version>${kotlin.version}</version>
172+
</dependency>
173+
<dependency>
174+
<groupId>org.jetbrains.kotlin</groupId>
175+
<artifactId>kotlin-test</artifactId>
176+
<version>${kotlin.version}</version>
177+
<scope>test</scope>
178+
</dependency>
179+
<dependency>
180+
<groupId>org.jetbrains.kotlin</groupId>
181+
<artifactId>kotlin-reflect</artifactId>
182+
<version>1.3.0</version>
183+
</dependency>
184+
</dependencies>
69185
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)