Skip to content

Commit daf737c

Browse files
Version bump
1 parent f777370 commit daf737c

File tree

11 files changed

+482
-11
lines changed

11 files changed

+482
-11
lines changed

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.zetaplugins</groupId>
88
<artifactId>NetwatchZ</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
<groupId>com.zetaplugins.netwatchz</groupId>

common/pom.xml.versionsBackup

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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+
<parent>
7+
<groupId>com.zetaplugins</groupId>
8+
<artifactId>NetwatchZ</artifactId>
9+
<version>1.0.0</version>
10+
</parent>
11+
12+
<groupId>com.zetaplugins.netwatchz</groupId>
13+
<artifactId>common</artifactId>
14+
15+
<properties>
16+
<maven.compiler.source>17</maven.compiler.source>
17+
<maven.compiler.target>17</maven.compiler.target>
18+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19+
</properties>
20+
21+
<build>
22+
<plugins>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-shade-plugin</artifactId>
26+
<version>3.6.0</version>
27+
<executions>
28+
<execution>
29+
<phase>package</phase>
30+
<goals><goal>shade</goal></goals>
31+
<configuration>
32+
<createDependencyReducedPom>false</createDependencyReducedPom>
33+
<relocations>
34+
<relocation>
35+
<pattern>com.maxmind</pattern>
36+
<shadedPattern>com.zetaplugins.shadow.com.maxmind</shadedPattern>
37+
</relocation>
38+
<relocation>
39+
<pattern>org.apache.commons.compress</pattern>
40+
<shadedPattern>com.zetaplugins.shadow.org.apache.commons.compress</shadedPattern>
41+
</relocation>
42+
<relocation>
43+
<pattern>com.github.benmanes.caffeine</pattern>
44+
<shadedPattern>com.zetaplugins.shadow.com.github.benmanes.caffeine</shadedPattern>
45+
</relocation>
46+
<relocation>
47+
<pattern>com.googlecode.json</pattern>
48+
<shadedPattern>com.zetaplugins.shadow.com.googlecode.json</shadedPattern>
49+
</relocation>
50+
</relocations>
51+
</configuration>
52+
</execution>
53+
</executions>
54+
</plugin>
55+
</plugins>
56+
</build>
57+
58+
<dependencies>
59+
<dependency>
60+
<groupId>com.maxmind.geoip2</groupId>
61+
<artifactId>geoip2</artifactId>
62+
<version>4.4.0</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.apache.commons</groupId>
66+
<artifactId>commons-compress</artifactId>
67+
<version>1.28.0</version>
68+
</dependency>
69+
<dependency>
70+
<groupId>com.github.ben-manes.caffeine</groupId>
71+
<artifactId>caffeine</artifactId>
72+
<version>3.2.0</version>
73+
</dependency>
74+
<dependency>
75+
<groupId>com.googlecode.json-simple</groupId>
76+
<artifactId>json-simple</artifactId>
77+
<version>1.1.1</version>
78+
</dependency>
79+
<dependency>
80+
<groupId>org.jetbrains</groupId>
81+
<artifactId>annotations</artifactId>
82+
<version>26.0.2</version>
83+
<scope>compile</scope>
84+
</dependency>
85+
</dependencies>
86+
</project>

netwatchz-paper/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.zetaplugins</groupId>
88
<artifactId>NetwatchZ</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
<artifactId>netwatchz-paper</artifactId>
13-
<version>1.0.0</version>
13+
<version>1.1.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>NetwatchZ-Paper</name>
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>com.zetaplugins.netwatchz</groupId>
8686
<artifactId>common</artifactId>
87-
<version>1.0.0</version>
87+
<version>1.1.0</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>io.papermc.paper</groupId>
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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+
<parent>
7+
<groupId>com.zetaplugins</groupId>
8+
<artifactId>NetwatchZ</artifactId>
9+
<version>1.0.0</version>
10+
</parent>
11+
12+
<artifactId>netwatchz-paper</artifactId>
13+
<version>1.0.0</version>
14+
<packaging>jar</packaging>
15+
16+
<name>NetwatchZ-Paper</name>
17+
18+
<properties>
19+
<java.version>17</java.version>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
</properties>
22+
23+
<build>
24+
<defaultGoal>clean package</defaultGoal>
25+
<plugins>
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<version>3.13.0</version>
30+
<configuration>
31+
<source>${java.version}</source>
32+
<target>${java.version}</target>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-shade-plugin</artifactId>
38+
<version>3.6.0</version>
39+
<executions>
40+
<execution>
41+
<phase>package</phase>
42+
<goals>
43+
<goal>shade</goal>
44+
</goals>
45+
</execution>
46+
</executions>
47+
<configuration>
48+
<artifactSet>
49+
<includes>
50+
<include>com.zetaplugins:zetacore</include> <!-- Include zetacore dependency -->
51+
</includes>
52+
</artifactSet>
53+
<transformers>
54+
<transformer
55+
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
56+
<transformer
57+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
58+
<mainClass>com.zetaplugins.netwatchz.paper.NetwatchZPaper</mainClass>
59+
</transformer>
60+
</transformers>
61+
</configuration>
62+
</plugin>
63+
</plugins>
64+
<resources>
65+
<resource>
66+
<directory>src/main/resources</directory>
67+
<filtering>true</filtering>
68+
</resource>
69+
</resources>
70+
</build>
71+
72+
<repositories>
73+
<repository>
74+
<id>papermc-repo</id>
75+
<url>https://repo.papermc.io/repository/maven-public/</url>
76+
</repository>
77+
<repository>
78+
<id>zetaplugins</id>
79+
<url>https://maven.zetaplugins.com/</url>
80+
</repository>
81+
</repositories>
82+
83+
<dependencies>
84+
<dependency>
85+
<groupId>com.zetaplugins.netwatchz</groupId>
86+
<artifactId>common</artifactId>
87+
<version>1.0.0</version>
88+
</dependency>
89+
<dependency>
90+
<groupId>io.papermc.paper</groupId>
91+
<artifactId>paper-api</artifactId>
92+
<version>1.17-R0.1-SNAPSHOT</version>
93+
<scope>provided</scope>
94+
</dependency>
95+
<dependency>
96+
<groupId>com.zetaplugins</groupId>
97+
<artifactId>zetacore</artifactId>
98+
<version>1.0.5</version>
99+
</dependency>
100+
</dependencies>
101+
</project>

netwatchz-spigot/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>com.zetaplugins</groupId>
88
<artifactId>NetwatchZ</artifactId>
9-
<version>1.0.0</version>
9+
<version>1.1.0</version>
1010
</parent>
1111

1212
<artifactId>netwatchz-spigot</artifactId>
13-
<version>1.0.0</version>
13+
<version>1.1.0</version>
1414
<packaging>jar</packaging>
1515

1616
<name>NetwatchZ-Spigot</name>
@@ -84,7 +84,7 @@
8484
<dependency>
8585
<groupId>com.zetaplugins.netwatchz</groupId>
8686
<artifactId>common</artifactId>
87-
<version>1.0.0</version>
87+
<version>1.1.0</version>
8888
</dependency>
8989
<dependency>
9090
<groupId>org.spigotmc</groupId>
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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+
<parent>
7+
<groupId>com.zetaplugins</groupId>
8+
<artifactId>NetwatchZ</artifactId>
9+
<version>1.0.0</version>
10+
</parent>
11+
12+
<artifactId>netwatchz-spigot</artifactId>
13+
<version>1.0.0</version>
14+
<packaging>jar</packaging>
15+
16+
<name>NetwatchZ-Spigot</name>
17+
18+
<properties>
19+
<java.version>17</java.version>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
</properties>
22+
23+
<build>
24+
<defaultGoal>clean package</defaultGoal>
25+
<plugins>
26+
<plugin>
27+
<groupId>org.apache.maven.plugins</groupId>
28+
<artifactId>maven-compiler-plugin</artifactId>
29+
<version>3.13.0</version>
30+
<configuration>
31+
<source>${java.version}</source>
32+
<target>${java.version}</target>
33+
</configuration>
34+
</plugin>
35+
<plugin>
36+
<groupId>org.apache.maven.plugins</groupId>
37+
<artifactId>maven-shade-plugin</artifactId>
38+
<version>3.6.0</version>
39+
<executions>
40+
<execution>
41+
<phase>package</phase>
42+
<goals>
43+
<goal>shade</goal>
44+
</goals>
45+
</execution>
46+
</executions>
47+
<configuration>
48+
<artifactSet>
49+
<includes>
50+
<include>com.zetaplugins:zetacore</include> <!-- Include zetacore dependency -->
51+
</includes>
52+
</artifactSet>
53+
<transformers>
54+
<transformer
55+
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
56+
<transformer
57+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
58+
<mainClass>com.zetaplugins.netwatchz.paper.NetwatchZPaper</mainClass>
59+
</transformer>
60+
</transformers>
61+
</configuration>
62+
</plugin>
63+
</plugins>
64+
<resources>
65+
<resource>
66+
<directory>src/main/resources</directory>
67+
<filtering>true</filtering>
68+
</resource>
69+
</resources>
70+
</build>
71+
72+
<repositories>
73+
<repository>
74+
<id>spigotmc-repo</id>
75+
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
76+
</repository>
77+
<repository>
78+
<id>zetaplugins</id>
79+
<url>https://maven.zetaplugins.com/</url>
80+
</repository>
81+
</repositories>
82+
83+
<dependencies>
84+
<dependency>
85+
<groupId>com.zetaplugins.netwatchz</groupId>
86+
<artifactId>common</artifactId>
87+
<version>1.0.0</version>
88+
</dependency>
89+
<dependency>
90+
<groupId>org.spigotmc</groupId>
91+
<artifactId>spigot-api</artifactId>
92+
<version>1.17-R0.1-SNAPSHOT</version>
93+
<scope>provided</scope>
94+
</dependency>
95+
<dependency>
96+
<groupId>com.zetaplugins</groupId>
97+
<artifactId>zetacore</artifactId>
98+
<version>1.0.5</version>
99+
</dependency>
100+
</dependencies>
101+
</project>

netwatchz-velocity/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
<parent>
88
<groupId>com.zetaplugins</groupId>
99
<artifactId>NetwatchZ</artifactId>
10-
<version>1.0.0</version>
10+
<version>1.1.0</version>
1111
</parent>
1212

1313
<artifactId>netwatchz-velocity</artifactId>
14-
<version>1.0.0</version>
14+
<version>1.1.0</version>
1515
<packaging>jar</packaging>
1616

1717
<name>NetwatchZ-Velocity</name>
@@ -127,7 +127,7 @@
127127
<dependency>
128128
<groupId>com.zetaplugins.netwatchz</groupId>
129129
<artifactId>common</artifactId>
130-
<version>1.0.0</version>
130+
<version>1.1.0</version>
131131
</dependency>
132132
<dependency>
133133
<groupId>com.velocitypowered</groupId>

0 commit comments

Comments
 (0)