Skip to content

Commit f9526bd

Browse files
author
Nothere998
authored
twin pom.xml
1 parent 5171a96 commit f9526bd

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

twin/pom.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,29 @@
3434
</parent>
3535
<artifactId>twin</artifactId>
3636
<dependencies>
37+
38+
<dependency>
39+
<groupId>org.slf4j</groupId>
40+
<artifactId>slf4j-api</artifactId>
41+
<version>2.0.9</version>
42+
</dependency>
43+
<dependency>
44+
<groupId>org.slf4j</groupId>
45+
<artifactId>slf4j-simple</artifactId>
46+
<version>2.0.9</version>
47+
</dependency>
48+
49+
50+
<dependency>
51+
<groupId>org.junit.jupiter</groupId>
52+
<artifactId>junit-jupiter-api</artifactId>
53+
<version>5.10.0</version>
54+
<scope>test</scope>
55+
</dependency>
3756
<dependency>
3857
<groupId>org.junit.jupiter</groupId>
3958
<artifactId>junit-jupiter-engine</artifactId>
59+
<version>5.10.0</version>
4060
<scope>test</scope>
4161
</dependency>
4262
<dependency>
@@ -47,21 +67,32 @@
4767
</dependencies>
4868
<build>
4969
<plugins>
70+
5071
<plugin>
5172
<groupId>org.apache.maven.plugins</groupId>
5273
<artifactId>maven-assembly-plugin</artifactId>
74+
<version>3.5.0</version>
5375
<executions>
5476
<execution>
77+
<id>create-jar</id>
78+
<phase>package</phase>
79+
<goals>
80+
<goal>single</goal>
81+
</goals>
5582
<configuration>
5683
<archive>
5784
<manifest>
5885
<mainClass>com.iluwatar.twin.App</mainClass>
5986
</manifest>
6087
</archive>
88+
<descriptorRefs>
89+
<descriptorRef>jar-with-dependencies</descriptorRef>
90+
</descriptorRefs>
6191
</configuration>
6292
</execution>
6393
</executions>
6494
</plugin>
6595
</plugins>
6696
</build>
6797
</project>
98+

0 commit comments

Comments
 (0)