Skip to content

Commit dd95bb2

Browse files
authored
Merge pull request #24 from RefracDevelopment/12-1-2023
1.0 Release
2 parents 3323ae0 + df93c96 commit dd95bb2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2749
-1311
lines changed

pom.xml

Lines changed: 80 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>me.refracdevelopment</groupId>
88
<artifactId>SimpleTags</artifactId>
9-
<version>1.0-beta.5</version>
9+
<version>1.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SimpleTags</name>
@@ -31,25 +31,49 @@
3131
<groupId>org.apache.maven.plugins</groupId>
3232
<artifactId>maven-shade-plugin</artifactId>
3333
<version>3.5.1</version>
34+
<configuration>
35+
<filters>
36+
<filter>
37+
<artifact>*:*</artifact>
38+
<excludes>
39+
<exclude>META-INF/*.MF</exclude>
40+
</excludes>
41+
</filter>
42+
</filters>
43+
<createDependencyReducedPom>false</createDependencyReducedPom>
44+
<relocations>
45+
<relocation>
46+
<pattern>com.cryptomorin.xseries</pattern>
47+
<shadedPattern>me.refracdevelopment.simplegems.libs.xseries</shadedPattern>
48+
</relocation>
49+
<relocation>
50+
<pattern>net.byteflux.libby</pattern>
51+
<shadedPattern>me.refracdevelopment.simplegems.libs.libby</shadedPattern>
52+
</relocation>
53+
<relocation>
54+
<pattern>me.gabytm.util.actions</pattern>
55+
<shadedPattern>me.refracdevelopment.simplegems.libs.actions</shadedPattern>
56+
</relocation>
57+
<relocation>
58+
<pattern>org.bstats</pattern>
59+
<shadedPattern>me.refracdevelopment.simplegems.libs.bstats</shadedPattern>
60+
</relocation>
61+
<relocation>
62+
<pattern>dev.dejvokep.boostedyaml</pattern>
63+
<shadedPattern>me.refracdevelopment.simplegems.libs.boostedyaml</shadedPattern>
64+
</relocation>
65+
<relocation>
66+
<pattern>com.tcoded.folialib</pattern>
67+
<shadedPattern>me.refracdevelopment.simplegems.libs.folialib</shadedPattern>
68+
</relocation>
69+
</relocations>
70+
</configuration>
3471
<executions>
3572
<execution>
3673
<phase>package</phase>
3774
<goals>
3875
<goal>shade</goal>
3976
</goals>
40-
<configuration>
41-
<createDependencyReducedPom>false</createDependencyReducedPom>
42-
<relocations>
43-
<relocation>
44-
<pattern>com.cryptomorin.xseries</pattern>
45-
<shadedPattern>me.refracdevelopment.simpletags.libs.xseries</shadedPattern>
46-
</relocation>
47-
<relocation>
48-
<pattern>dev.rosewood.rosegarden</pattern>
49-
<shadedPattern>me.refracdevelopment.simpletags.libs.rosegarden</shadedPattern>
50-
</relocation>
51-
</relocations>
52-
</configuration>
5377
</execution>
5478
</executions>
5579
</plugin>
@@ -67,10 +91,6 @@
6791
<id>spigotmc-repo</id>
6892
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
6993
</repository>
70-
<repository>
71-
<id>sonatype</id>
72-
<url>https://oss.sonatype.org/content/groups/public/</url>
73-
</repository>
7494
<repository>
7595
<id>placeholderapi</id>
7696
<url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
@@ -88,19 +108,17 @@
88108
<url>https://repo.codemc.org/repository/maven-public/</url>
89109
<layout>default</layout>
90110
</repository>
111+
<repository>
112+
<id>devmart-other</id>
113+
<url>https://nexuslite.gcnt.net/repos/other/</url>
114+
</repository>
91115
</repositories>
92116

93117
<dependencies>
94118
<dependency>
95119
<groupId>org.spigotmc</groupId>
96120
<artifactId>spigot-api</artifactId>
97-
<version>1.8.8-R0.1-SNAPSHOT</version>
98-
<scope>provided</scope>
99-
</dependency>
100-
<dependency>
101-
<groupId>org.spigotmc</groupId>
102-
<artifactId>spigot-api</artifactId>
103-
<version>1.20-R0.1-SNAPSHOT</version>
121+
<version>1.20.4-R0.1-SNAPSHOT</version>
104122
<scope>provided</scope>
105123
</dependency>
106124
<dependency>
@@ -109,11 +127,6 @@
109127
<version>1.18.30</version>
110128
<scope>provided</scope>
111129
</dependency>
112-
<dependency>
113-
<groupId>com.github.Refrac</groupId>
114-
<artifactId>RoseGarden</artifactId>
115-
<version>1.2.5</version>
116-
</dependency>
117130
<dependency>
118131
<groupId>com.github.cryptomorin</groupId>
119132
<artifactId>XSeries</artifactId>
@@ -163,8 +176,44 @@
163176
<dependency>
164177
<groupId>org.mariadb.jdbc</groupId>
165178
<artifactId>mariadb-java-client</artifactId>
166-
<version>3.3.1</version>
179+
<version>3.3.2</version>
167180
<scope>provided</scope>
168181
</dependency>
182+
<dependency>
183+
<groupId>org.slf4j</groupId>
184+
<artifactId>slf4j-reload4j</artifactId>
185+
<version>2.0.9</version>
186+
<scope>provided</scope>
187+
</dependency>
188+
<dependency>
189+
<groupId>org.xerial</groupId>
190+
<artifactId>sqlite-jdbc</artifactId>
191+
<version>3.44.1.0</version>
192+
<scope>provided</scope>
193+
</dependency>
194+
<dependency>
195+
<groupId>com.zaxxer</groupId>
196+
<artifactId>HikariCP</artifactId>
197+
<version>4.0.3</version>
198+
<scope>provided</scope>
199+
</dependency>
200+
<dependency>
201+
<groupId>org.bstats</groupId>
202+
<artifactId>bstats-bukkit</artifactId>
203+
<version>3.0.2</version>
204+
<scope>compile</scope>
205+
</dependency>
206+
<dependency>
207+
<groupId>dev.dejvokep</groupId>
208+
<artifactId>boosted-yaml</artifactId>
209+
<version>1.3.1</version>
210+
<scope>compile</scope>
211+
</dependency>
212+
<dependency>
213+
<groupId>com.tcoded</groupId>
214+
<artifactId>FoliaLib</artifactId>
215+
<version>0.3.1</version>
216+
<scope>compile</scope>
217+
</dependency>
169218
</dependencies>
170219
</project>

0 commit comments

Comments
 (0)