|
|
@ -1,7 +1,7 @@ |
|
|
|
<?xml version="1.0" encoding="UTF-8"?> |
|
|
|
<?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"> |
|
|
|
<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> |
|
|
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<groupId>uk.co.chamsys</groupId> |
|
|
|
<groupId>moe.nekojimi</groupId> |
|
|
|
<artifactId>JavaMavenTemplate</artifactId> |
|
|
|
<artifactId>JavaMavenTemplate</artifactId> |
|
|
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<version>1.0-SNAPSHOT</version> |
|
|
|
<packaging>jar</packaging> |
|
|
|
<packaging>jar</packaging> |
|
|
@ -13,23 +13,23 @@ |
|
|
|
<build> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
|
|
<plugin> |
|
|
|
<artifactId>maven-assembly-plugin</artifactId> |
|
|
|
<groupId>org.apache.maven.plugins</groupId> |
|
|
|
<configuration> |
|
|
|
<artifactId>maven-shade-plugin</artifactId> |
|
|
|
<descriptorRefs> |
|
|
|
<version>3.2.4</version> |
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef> |
|
|
|
|
|
|
|
</descriptorRefs> |
|
|
|
|
|
|
|
<archive> |
|
|
|
|
|
|
|
<manifest> |
|
|
|
|
|
|
|
<mainClass>moe.nekojimi.javamaventemplate.Main</mainClass> |
|
|
|
|
|
|
|
</manifest> |
|
|
|
|
|
|
|
</archive> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
|
|
|
|
<executions> |
|
|
|
<executions> |
|
|
|
<execution> |
|
|
|
<execution> |
|
|
|
<phase>package</phase> |
|
|
|
<phase>package</phase> |
|
|
|
<goals> |
|
|
|
<goals> |
|
|
|
<goal>single</goal> |
|
|
|
<goal>shade</goal> |
|
|
|
</goals> |
|
|
|
</goals> |
|
|
|
|
|
|
|
<configuration> |
|
|
|
|
|
|
|
<transformers> |
|
|
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
|
|
|
|
|
|
|
<mainClass>moe.nekojimi.template.Main</mainClass> |
|
|
|
|
|
|
|
</transformer> |
|
|
|
|
|
|
|
</transformers> |
|
|
|
|
|
|
|
<minimizeJar>true</minimizeJar> |
|
|
|
|
|
|
|
</configuration> |
|
|
|
</execution> |
|
|
|
</execution> |
|
|
|
</executions> |
|
|
|
</executions> |
|
|
|
</plugin> |
|
|
|
</plugin> |
|
|
|