Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit f404187

Browse files
committed
pom
1 parent a1d3e9c commit f404187

File tree

1 file changed

+63
-69
lines changed

1 file changed

+63
-69
lines changed

pom.xml

Lines changed: 63 additions & 69 deletions
Original file line numberDiff line numberDiff line change
@@ -2,79 +2,73 @@
22
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
33
xmlns="http://maven.apache.org/POM/4.0.0"
44
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>
5+
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>org.zeroBzeroT</groupId>
8-
<artifactId>DiscoStripAddress</artifactId>
9-
<version>1.0-SNAPSHOT</version>
10-
<packaging>jar</packaging>
7+
<groupId>org.zeroBzeroT</groupId>
8+
<artifactId>DiscoStripAddress</artifactId>
9+
<version>1.0.0-SNAPSHOT</version>
10+
<packaging>jar</packaging>
11+
<name>${project.artifactId}</name>
12+
<description>Plugin for removing IP addresses from disconnect messages.</description>
1113

12-
<name>DiscoStripAddress</name>
14+
<properties>
15+
<java.version>1.8</java.version>
16+
<maven.compiler.source>${java.version}</maven.compiler.source>
17+
<maven.compiler.target>${java.version}</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
</properties>
1320

14-
<description>Plugin for removing IP addresses from disconnect messages.</description>
15-
<properties>
16-
<java.version>1.8</java.version>
17-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18-
</properties>
21+
<build>
22+
<defaultGoal>clean package</defaultGoal>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-compiler-plugin</artifactId>
27+
<version>3.8.1</version>
28+
<configuration>
29+
<source>${java.version}</source>
30+
<target>${java.version}</target>
31+
</configuration>
32+
</plugin>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-shade-plugin</artifactId>
36+
<version>3.2.4</version>
37+
<executions>
38+
<execution>
39+
<phase>package</phase>
40+
<goals>
41+
<goal>shade</goal>
42+
</goals>
43+
<configuration>
44+
<createDependencyReducedPom>false</createDependencyReducedPom>
45+
</configuration>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
</plugins>
50+
<resources>
51+
<resource>
52+
<directory>src/main/resources</directory>
53+
<filtering>true</filtering>
54+
</resource>
55+
</resources>
56+
</build>
1957

20-
<build>
21-
<defaultGoal>clean package</defaultGoal>
22-
<plugins>
23-
<plugin>
24-
<groupId>org.apache.maven.plugins</groupId>
25-
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>3.8.1</version>
27-
<configuration>
28-
<source>${java.version}</source>
29-
<target>${java.version}</target>
30-
</configuration>
31-
</plugin>
32-
<plugin>
33-
<groupId>org.apache.maven.plugins</groupId>
34-
<artifactId>maven-shade-plugin</artifactId>
35-
<version>3.2.4</version>
36-
<executions>
37-
<execution>
38-
<phase>package</phase>
39-
<goals>
40-
<goal>shade</goal>
41-
</goals>
42-
<configuration>
43-
<createDependencyReducedPom>false</createDependencyReducedPom>
44-
</configuration>
45-
</execution>
46-
</executions>
47-
</plugin>
48-
</plugins>
49-
<resources>
50-
<resource>
51-
<directory>src/main/resources</directory>
52-
<filtering>true</filtering>
53-
</resource>
54-
</resources>
55-
</build>
58+
<repositories>
59+
<repository>
60+
<id>sonatype snapshots</id>
61+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
62+
</repository>
63+
</repositories>
5664

57-
<repositories>
58-
<repository>
59-
<id>bungeecord-repo</id>
60-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
61-
</repository>
62-
</repositories>
65+
<dependencies>
66+
<dependency>
67+
<groupId>net.md-5</groupId>
68+
<artifactId>bungeecord-api</artifactId>
69+
<version>1.16-R0.4</version>
70+
<scope>provided</scope>
71+
</dependency>
72+
</dependencies>
6373

64-
<dependencies>
65-
<dependency>
66-
<groupId>net.md-5</groupId>
67-
<artifactId>bungeecord-api</artifactId>
68-
<version>1.16-R0.3</version>
69-
<type>jar</type>
70-
<scope>provided</scope>
71-
</dependency>
72-
<dependency>
73-
<groupId>net.md-5</groupId>
74-
<artifactId>bungeecord-api</artifactId>
75-
<version>1.16-R0.3</version>
76-
<type>javadoc</type>
77-
<scope>provided</scope>
78-
</dependency>
79-
</dependencies>
8074
</project>

0 commit comments

Comments
 (0)