-
Notifications
You must be signed in to change notification settings - Fork 0
/
dependency-reduced-pom.xml
100 lines (100 loc) · 3.08 KB
/
dependency-reduced-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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.relluem94</groupId>
<artifactId>rellulib</artifactId>
<name>RelluLib</name>
<version>0.12</version>
<url>https://github.com/Relluem94/RelluLib</url>
<scm>
<connection>scm:git:[email protected]:Relluem94/RelluLib.git</connection>
<developerConnection>scm:git:[email protected]:Relluem94/RelluLib.git</developerConnection>
<url>https://github.com/Relluem94/RelluLib</url>
</scm>
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<source>17</source>
<target>17</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>false</minimizeJar>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>github</id>
<repositories>
<repository>
<releases />
<snapshots />
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<releases />
<snapshots />
<id>github</id>
<name>RelluEssentials</name>
<url>https://maven.pkg.github.com/Relluem94s/RelluLib</url>
</repository>
</repositories>
</profile>
</profiles>
<repositories>
<repository>
<id>central</id>
<name>central</name>
<url>https://repo.maven.apache.org/maven2/</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>github</id>
<name>GitHub Relluem94 Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Relluem94/RelluLib</url>
</repository>
</distributionManagement>
<properties>
<maven.compiler.release>17</maven.compiler.release>
</properties>
</project>