|
6 | 6 |
|
7 | 7 | <groupId>me.refracdevelopment</groupId> |
8 | 8 | <artifactId>SimpleTags</artifactId> |
9 | | - <version>1.0-beta.5</version> |
| 9 | + <version>1.0</version> |
10 | 10 | <packaging>jar</packaging> |
11 | 11 |
|
12 | 12 | <name>SimpleTags</name> |
|
31 | 31 | <groupId>org.apache.maven.plugins</groupId> |
32 | 32 | <artifactId>maven-shade-plugin</artifactId> |
33 | 33 | <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> |
34 | 71 | <executions> |
35 | 72 | <execution> |
36 | 73 | <phase>package</phase> |
37 | 74 | <goals> |
38 | 75 | <goal>shade</goal> |
39 | 76 | </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> |
53 | 77 | </execution> |
54 | 78 | </executions> |
55 | 79 | </plugin> |
|
67 | 91 | <id>spigotmc-repo</id> |
68 | 92 | <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
69 | 93 | </repository> |
70 | | - <repository> |
71 | | - <id>sonatype</id> |
72 | | - <url>https://oss.sonatype.org/content/groups/public/</url> |
73 | | - </repository> |
74 | 94 | <repository> |
75 | 95 | <id>placeholderapi</id> |
76 | 96 | <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url> |
|
88 | 108 | <url>https://repo.codemc.org/repository/maven-public/</url> |
89 | 109 | <layout>default</layout> |
90 | 110 | </repository> |
| 111 | + <repository> |
| 112 | + <id>devmart-other</id> |
| 113 | + <url>https://nexuslite.gcnt.net/repos/other/</url> |
| 114 | + </repository> |
91 | 115 | </repositories> |
92 | 116 |
|
93 | 117 | <dependencies> |
94 | 118 | <dependency> |
95 | 119 | <groupId>org.spigotmc</groupId> |
96 | 120 | <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> |
104 | 122 | <scope>provided</scope> |
105 | 123 | </dependency> |
106 | 124 | <dependency> |
|
109 | 127 | <version>1.18.30</version> |
110 | 128 | <scope>provided</scope> |
111 | 129 | </dependency> |
112 | | - <dependency> |
113 | | - <groupId>com.github.Refrac</groupId> |
114 | | - <artifactId>RoseGarden</artifactId> |
115 | | - <version>1.2.5</version> |
116 | | - </dependency> |
117 | 130 | <dependency> |
118 | 131 | <groupId>com.github.cryptomorin</groupId> |
119 | 132 | <artifactId>XSeries</artifactId> |
|
163 | 176 | <dependency> |
164 | 177 | <groupId>org.mariadb.jdbc</groupId> |
165 | 178 | <artifactId>mariadb-java-client</artifactId> |
166 | | - <version>3.3.1</version> |
| 179 | + <version>3.3.2</version> |
167 | 180 | <scope>provided</scope> |
168 | 181 | </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> |
169 | 218 | </dependencies> |
170 | 219 | </project> |
0 commit comments