Skip to content

Commit a210117

Browse files
Initial Commit
1 parent 9e37a47 commit a210117

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<plugin>
4646
<groupId>org.jetbrains.kotlin</groupId>
4747
<artifactId>kotlin-maven-plugin</artifactId>
48-
<version>1.9.22</version>
48+
<version>1.9.21</version>
4949
<executions>
5050
<execution>
5151
<id>compile</id>
@@ -79,6 +79,24 @@
7979
<mainClass>MainKt</mainClass>
8080
</configuration>
8181
</plugin>
82+
<plugin>
83+
<artifactId>maven-assembly-plugin</artifactId>
84+
<version>3.6.0</version>
85+
<configuration>
86+
<descriptorRefs>
87+
<descriptorRef>jar-with-dependencies</descriptorRef>
88+
</descriptorRefs>
89+
</configuration>
90+
<executions>
91+
<execution>
92+
<id>make-assembly</id>
93+
<phase>package</phase>
94+
<goals>
95+
<goal>single</goal>
96+
</goals>
97+
</execution>
98+
</executions>
99+
</plugin>
82100
</plugins>
83101
</build>
84102

0 commit comments

Comments
 (0)