|
52 | 52 | <!-- Some JAVA encoding settings --> |
53 | 53 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
54 | 54 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
55 | | - <java.version>17</java.version> |
| 55 | + <java.version>21</java.version> |
56 | 56 |
|
57 | | - <!-- SPIGOT API version --> |
58 | | - <spigot.version>1.21.3-R0.1-SNAPSHOT</spigot.version> |
| 57 | + <!-- PAPER API version --> |
| 58 | + <paper.version>1.21.11-R0.1-SNAPSHOT</paper.version> |
59 | 59 |
|
60 | 60 | <!-- BentoBox API version --> |
61 | | - <bentobox.version>2.7.1-SNAPSHOT</bentobox.version> |
| 61 | + <bentobox.version>3.10.0</bentobox.version> |
62 | 62 |
|
63 | 63 | <!-- Revision variable removes warning about dynamic version --> |
64 | 64 | <revision>${build.version}-SNAPSHOT</revision> |
65 | 65 | <!-- This allows to change between versions and snapshots. --> |
66 | | - <build.version>1.15.0</build.version> |
| 66 | + <build.version>1.16.0</build.version> |
67 | 67 | <build.number>-LOCAL</build.number> |
68 | 68 | <!-- Sonar Cloud --> |
69 | 69 | <sonar.projectKey>BentoBoxWorld_ControlPanel</sonar.projectKey> |
|
105 | 105 | <!-- Repositories contains links from were dependencies will be searched --> |
106 | 106 | <repositories> |
107 | 107 | <repository> |
108 | | - <id>spigot-repo</id> |
109 | | - <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots</url> |
110 | | - </repository> |
111 | | - <repository> |
112 | | - <id>spigotmc-public</id> |
113 | | - <url>https://hub.spigotmc.org/nexus/content/groups/public/</url> |
| 108 | + <id>papermc</id> |
| 109 | + <url>https://repo.papermc.io/repository/maven-public/</url> |
114 | 110 | </repository> |
115 | 111 | <repository> |
116 | 112 | <id>bentoboxworld</id> |
|
130 | 126 | </repository> |
131 | 127 | </repositories> |
132 | 128 |
|
133 | | - <!-- Your addon must contain Spigot and BentoBox APIs dependencies. --> |
| 129 | + <!-- Your addon must contain Paper and BentoBox APIs dependencies. --> |
134 | 130 | <dependencies> |
135 | 131 | <dependency> |
136 | | - <groupId>org.spigotmc</groupId> |
137 | | - <artifactId>spigot-api</artifactId> |
138 | | - <version>${spigot.version}</version> |
| 132 | + <groupId>io.papermc.paper</groupId> |
| 133 | + <artifactId>paper-api</artifactId> |
| 134 | + <version>${paper.version}</version> |
139 | 135 | <scope>provided</scope> |
140 | 136 | </dependency> |
141 | 137 |
|
|
0 commit comments