Skip to content

Commit 2604c58

Browse files
committed
Trying to revert some stuff
1 parent c5e92db commit 2604c58

File tree

1 file changed

+22
-36
lines changed

1 file changed

+22
-36
lines changed

pom.xml

+22-36
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,35 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0"
23
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
34
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
45
<modelVersion>4.0.0</modelVersion>
56

67
<groupId>io.github.mireole</groupId>
78
<artifactId>Asynconf2023</artifactId>
8-
<version>1.1</version>
9+
<version>1.0-SNAPSHOT</version>
910

1011
<properties>
12+
<maven.compiler.source>17</maven.compiler.source>
13+
<maven.compiler.target>17</maven.compiler.target>
1114
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1215
</properties>
1316

14-
<build>
15-
<plugins>
16-
<plugin>
17-
<groupId>org.apache.maven.plugins</groupId>
18-
<artifactId>maven-compiler-plugin</artifactId>
19-
<version>3.8.0</version>
20-
<configuration>
21-
<source>17</source>
22-
<target>17</target>
23-
</configuration>
24-
</plugin>
25-
<plugin>
26-
<groupId>org.apache.maven.plugins</groupId>
27-
<artifactId>maven-assembly-plugin</artifactId>
28-
<executions>
29-
<execution>
30-
<phase>package</phase>
31-
<goals>
32-
<goal>single</goal>
33-
</goals>
34-
<configuration>
35-
<archive>
36-
<manifest>
37-
<mainClass>io.github.mireole.asynconf2023</mainClass>
38-
</manifest>
39-
</archive>
40-
<descriptorRefs>
41-
<descriptorRef>jar-with-dependencies</descriptorRef>
42-
</descriptorRefs>
43-
</configuration>
44-
</execution>
45-
</executions>
46-
</plugin>
47-
</plugins>
48-
</build>
17+
<dependencies>
18+
<dependency>
19+
<groupId>com.github.weisj</groupId>
20+
<artifactId>darklaf-core</artifactId>
21+
<version>3.0.2</version>
22+
</dependency>
23+
<dependency>
24+
<groupId>com.google.code.gson</groupId>
25+
<artifactId>gson</artifactId>
26+
<version>2.10.1</version>
27+
</dependency>
28+
<dependency>
29+
<groupId>javax.annotation</groupId>
30+
<artifactId>javax.annotation-api</artifactId>
31+
<version>1.2</version>
32+
</dependency>
33+
</dependencies>
34+
4935
</project>

0 commit comments

Comments
 (0)