mirror of
https://github.com/sparrowwallet/signpackage.git
synced 2024-11-02 20:36:46 +00:00
73 lines
2.5 KiB
XML
73 lines
2.5 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<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/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<groupId>com.dgunia</groupId>
|
||
|
<artifactId>SignPackage</artifactId>
|
||
|
<version>1.0</version>
|
||
|
|
||
|
<properties>
|
||
|
<kotlin.version>1.3.61</kotlin.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-stdlib</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-test</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<!-- https://mvnrepository.com/artifact/commons-cli/commons-cli -->
|
||
|
<dependency>
|
||
|
<groupId>commons-cli</groupId>
|
||
|
<artifactId>commons-cli</artifactId>
|
||
|
<version>1.3.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.zeroturnaround</groupId>
|
||
|
<artifactId>zt-zip</artifactId>
|
||
|
<version>1.11</version>
|
||
|
<type>jar</type>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||
|
<version>${kotlin.version}</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>compile</id>
|
||
|
<phase>compile</phase>
|
||
|
<goals>
|
||
|
<goal>compile</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>com.dgunia.signpackage.MainKt</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|