Skip to content

Commit ffb3eb4

Browse files
andrei1058JT122406tomkeuperTom18314ItzCodex
authored
Develop (#54)
* fix prefix and suffix length * fix prefix and suffix length * fix bw #662 * check identifier length * Add 1_20_R1 Support (#28) * fix prefix and suffix length (#17) * Fix length (#18) * fix prefix and suffix length * fix prefix and suffix length * fix team score issue on 1.19 (#19) * fix prefix and suffix length * fix prefix and suffix length * fix bw #662 * Fix for #21 (#23) * Fix papi not formatting on first join * fixup! Fix papi not formatting on first join * clean up --------- Co-authored-by: Andrei Dascălu <[email protected]> * Structure rework and added support for 1.19_R3 (#26) Co-authored-by: ItzCodex <[email protected]> * fix class visibility (#27) * Add 1_20_R1 Support Signed-off-by: Joseph T. McQuigg <[email protected]> --------- Signed-off-by: Joseph T. McQuigg <[email protected]> Co-authored-by: Andrei Dascălu <[email protected]> Co-authored-by: MrCeasar <[email protected]> Co-authored-by: Tom <[email protected]> Co-authored-by: ItzCodex <[email protected]> * fix first line getting skipped * fix placeholders being registered after title, fix first line getting skipped * fix placeholders being registered after title, fix first line getting skipped * clean up * clean up (#37) * Add 1.20 R2 support (#38) * clean up * add 1.20 R2 support * workflow update * papi version update * skip docs * version update --------- Signed-off-by: Joseph T. McQuigg <[email protected]> Co-authored-by: J.T. McQuigg <[email protected]> Co-authored-by: MrCeasar <[email protected]> Co-authored-by: Tom <[email protected]> Co-authored-by: ItzCodex <[email protected]>
1 parent e6ef053 commit ffb3eb4

File tree

15 files changed

+35
-15
lines changed

15 files changed

+35
-15
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
88
<artifactId>sidebar-pom</artifactId>
99
<packaging>pom</packaging>
10-
<version>25.2</version>
10+
<version>25.2.1-SNAPSHOT</version>
1111
<modules>
1212
<module>sidebar-base</module>
1313
<module>sidebar-v1_21_R1</module>

sidebar-base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-cmn1/pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
88
<artifactId>sidebar-pom</artifactId>
9-
<version>25.2</version>
9+
<version>25.2.1-SNAPSHOT</version>
1010
</parent>
1111

1212
<artifactId>sidebar-cmn1</artifactId>
@@ -40,4 +40,24 @@
4040
<scope>provided</scope>
4141
</dependency>
4242
</dependencies>
43+
44+
<build>
45+
<plugins>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-compiler-plugin</artifactId>
49+
<configuration>
50+
<source>20</source>
51+
<target>20</target>
52+
</configuration>
53+
</plugin>
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-javadoc-plugin</artifactId>
57+
<configuration>
58+
<skip>true</skip>
59+
</configuration>
60+
</plugin>
61+
</plugins>
62+
</build>
4363
</project>

sidebar-v1_12_R1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_16_R3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_17_R1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_18_R2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_19_R2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_19_R3/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

sidebar-v1_20_R1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>sidebar-pom</artifactId>
77
<groupId>com.andrei1058.spigot.sidebar</groupId>
8-
<version>25.2</version>
8+
<version>25.2.1-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

0 commit comments

Comments
 (0)