Skip to content

Commit 1826ea4

Browse files
Create pom.xml
1 parent b40eac4 commit 1826ea4

1 file changed

Lines changed: 41 additions & 0 deletions

File tree

pom.xml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>org.CreadoresProgram</groupId>
8+
<artifactId>ViaProxyNoCommandRun</artifactId>
9+
<version>1.0.0</version>
10+
11+
<properties>
12+
<maven.compiler.source>1.8</maven.compiler.source>
13+
<maven.compiler.target>1.8</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-shade-plugin</artifactId>
21+
<version>3.2.4</version>
22+
<configuration>
23+
<transformers>
24+
<transformer
25+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
26+
<mainClass>org.CreadoresProgram.ViaProxyNoCommandRun.Main</mainClass>
27+
</transformer>
28+
</transformers>
29+
</configuration>
30+
<executions>
31+
<execution>
32+
<phase>package</phase>
33+
<goals>
34+
<goal>shade</goal>
35+
</goals>
36+
</execution>
37+
</executions>
38+
</plugin>
39+
</plugins>
40+
</build>
41+
</project>

0 commit comments

Comments
 (0)