-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
78 lines (70 loc) · 2.35 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<groupId>com.konloch</groupId>
<artifactId>ClassFileSearcher</artifactId>
<version>1.0.0</version>
<name>ClassFileSearcher</name>
<description>Search for Classfiles in arbitrary data</description>
<url>https://konloch.com/ClassFileSearcher/</url>
<inceptionYear>2024</inceptionYear>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/license/mit/</url>
</license>
</licenses>
<organization>
<name>Konloch</name>
<url>https://konloch.com</url>
</organization>
<developers>
<developer>
<name>Konloch</name>
<email>konloch@gmail.com</email>
<url>https://konloch.com</url>
<organization>Konloch</organization>
<organizationUrl>https://konloch.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Konloch/ClassFileSearcher.git</connection>
<developerConnection>scm:git:ssh://github.com:Konloch/ClassFileSearcher.git</developerConnection>
<url>http://github.com/Konloch/ClassFileSearcher/tree/master</url>
</scm>
<properties>
<java.version>1.8</java.version>
<maven.compiler.target>${java.version}</maven.compiler.target>
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>com.konloch.cfs.ClassFileSearcher</Main-Class>
<Implementation-Version>${project.version}</Implementation-Version>
<X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK>
<X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK>
</manifestEntries>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
</project>