|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>nu.nerd</groupId> |
5 | 5 | <artifactId>ModReq</artifactId> |
6 | | - <version>2.0</version> |
| 6 | + <version>3.0.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>ModReq</name> |
9 | | - <description>Moderator Request Sytem</description> |
| 9 | + <description>Moderator Request System</description> |
10 | 10 | <url>https://github.com/NerdNu/ModReq</url> |
11 | 11 | <scm> |
12 | 12 | <connection>scm:git:https://github.com/NerdNu/ModReq.git</connection> |
|
19 | 19 |
|
20 | 20 | <repositories> |
21 | 21 | <repository> |
22 | | - <id>spigot-repo</id> |
23 | | - <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
| 22 | + <id>papermc</id> |
| 23 | + <url>https://repo.papermc.io/repository/maven-public/</url> |
24 | 24 | </repository> |
25 | 25 | </repositories> |
26 | 26 |
|
27 | 27 | <dependencies> |
28 | 28 | <dependency> |
29 | | - <groupId>org.spigotmc</groupId> |
30 | | - <artifactId>spigot-api</artifactId> |
31 | | - <version>1.18.1-R0.1-SNAPSHOT</version> |
32 | | - <type>jar</type> |
33 | | - <scope>compile</scope> |
| 29 | + <groupId>io.papermc.paper</groupId> |
| 30 | + <artifactId>paper-api</artifactId> |
| 31 | + <version>1.20-R0.1-SNAPSHOT</version> |
| 32 | + <scope>provided</scope> |
34 | 33 | </dependency> |
35 | 34 | <!-- |
36 | 35 | Must build locally from https://github.com/NerdNu/bukkit-migration-tools |
|
44 | 43 | <version>0.2</version> |
45 | 44 | </dependency> |
46 | 45 | <dependency> |
47 | | - <groupId>nu.nerd</groupId> |
48 | | - <artifactId>BukkitEbean</artifactId> |
49 | | - <version>1.0.1</version> |
| 46 | + <groupId>com.j256.ormlite</groupId> |
| 47 | + <artifactId>ormlite-jdbc</artifactId> |
| 48 | + <version>6.1</version> |
| 49 | + </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.xerial</groupId> |
| 52 | + <artifactId>sqlite-jdbc</artifactId> |
| 53 | + <version>3.46.0.0</version> |
50 | 54 | </dependency> |
51 | 55 | </dependencies> |
52 | 56 |
|
|
85 | 89 | <plugin> |
86 | 90 | <groupId>org.apache.maven.plugins</groupId> |
87 | 91 | <artifactId>maven-shade-plugin</artifactId> |
88 | | - <version>3.3.0-SNAPSHOT</version> |
| 92 | + <version>3.5.3</version> |
89 | 93 | <executions> |
90 | 94 | <execution> |
91 | 95 | <phase>package</phase> |
|
100 | 104 | <includes> |
101 | 105 | <include>org.gestern:bukkit-migration-tools:jar:*</include> |
102 | 106 | <include>nu.nerd:BukkitEbean:jar:*</include> |
| 107 | + <include>com.j256.ormlite:ormlite-jdbc:jar:*</include> |
| 108 | + <include>org.xerial:sqlite-jdbc:jar:*</include> |
103 | 109 | </includes> |
104 | 110 | </artifactSet> |
105 | 111 | <relocations> |
106 | 112 | <relocation> |
107 | | - <pattern>nu.nerd.BukkitEbean</pattern> |
108 | | - <shadedPattern>nu.nerd.modreq.BukkitEbean</shadedPattern> |
| 113 | + <pattern>com.j256.ormlite</pattern> |
| 114 | + <shadedPattern>nu.nerd.modreq.ormlite</shadedPattern> |
109 | 115 | </relocation> |
110 | 116 | </relocations> |
111 | 117 | </configuration> |
|
129 | 135 | <plugin> |
130 | 136 | <groupId>org.apache.maven.plugins</groupId> |
131 | 137 | <artifactId>maven-compiler-plugin</artifactId> |
132 | | - <version>3.8.1</version> |
| 138 | + <version>3.13.0</version> |
133 | 139 | <configuration> |
134 | 140 | <release>17</release> |
135 | 141 | <annotationProcessorPaths> |
|
0 commit comments