|
16 | 16 | <groupId>cn.superiormc.ultimateshop</groupId> |
17 | 17 | <artifactId>LegacyCodesCompatibility</artifactId> |
18 | 18 | <version>1.0.0</version> |
19 | | - <scope>system</scope> |
20 | | - <systemPath>${project.basedir}/lib/LegacyCodesCompatibility.jar</systemPath> |
| 19 | + <scope>provided</scope> |
21 | 20 | </dependency> |
22 | 21 | <dependency> |
23 | 22 | <groupId>net.kyori</groupId> |
|
65 | 64 | <groupId>io.lumine</groupId> |
66 | 65 | <artifactId>MythicLib</artifactId> |
67 | 66 | <version>1.7.1</version> |
68 | | - <scope>system</scope> |
69 | | - <systemPath>${project.basedir}/lib/MythicLib-dist-1.7.1-20251205.145545-63.jar</systemPath> |
| 67 | + <scope>provided</scope> |
70 | 68 | </dependency> |
71 | 69 | <dependency> |
72 | 70 | <groupId>net.Indyuce</groupId> |
73 | 71 | <artifactId>MMOItems-API</artifactId> |
74 | 72 | <version>6.10.1-SNAPSHOT</version> |
75 | | - <scope>system</scope> |
76 | | - <systemPath>${project.basedir}/lib/MMOItems-API-6.10.1-20251204.191337-43.jar</systemPath> |
| 73 | + <scope>provided</scope> |
77 | 74 | </dependency> |
78 | 75 | <dependency> |
79 | 76 | <groupId>com.github.LoneDev6</groupId> |
|
103 | 100 | <groupId>net.advancedplugins</groupId> |
104 | 101 | <artifactId>AdvancedEnchantments</artifactId> |
105 | 102 | <version>1.0.0</version> |
106 | | - <scope>system</scope> |
107 | | - <systemPath>${project.basedir}/lib/AdvancedEnchantmentsAPI.jar</systemPath> |
| 103 | + <scope>provided</scope> |
108 | 104 | </dependency> |
109 | 105 | <dependency> |
110 | 106 | <groupId>net.luckperms</groupId> |
|
206 | 202 | <groupId>me.qKing12</groupId> |
207 | 203 | <artifactId>RoyaleEconomyAPI</artifactId> |
208 | 204 | <version>1.0.0</version> |
209 | | - <scope>system</scope> |
210 | | - <systemPath>${project.basedir}/lib/RoyaleEconomyAPI.jar</systemPath> |
| 205 | + <scope>provided</scope> |
211 | 206 | </dependency> |
212 | 207 | <dependency> |
213 | 208 | <groupId>com.github.Redempt</groupId> |
|
231 | 226 | <groupId>com.ssomar.score</groupId> |
232 | 227 | <artifactId>SCore</artifactId> |
233 | 228 | <version>5.24.7.8</version> |
234 | | - <scope>system</scope> |
235 | | - <systemPath>${project.basedir}/lib/SCore-5.24.7.9.jar</systemPath> |
| 229 | + <scope>provided</scope> |
236 | 230 | </dependency> |
237 | 231 | <dependency> |
238 | 232 | <groupId>com.ssomar.score</groupId> |
239 | 233 | <artifactId>ExecutableItems</artifactId> |
240 | 234 | <version>7.24.7.9</version> |
241 | | - <scope>system</scope> |
242 | | - <systemPath>${project.basedir}/lib/ExecutableItems-7.24.7.9.jar</systemPath> |
| 235 | + <scope>provided</scope> |
243 | 236 | </dependency> |
244 | 237 | <dependency> |
245 | 238 | <groupId>org.json</groupId> |
|
268 | 261 | <groupId>com.bekvon.bukkit.residence</groupId> |
269 | 262 | <artifactId>Residence</artifactId> |
270 | 263 | <version>5.1.6.2</version> |
271 | | - <scope>system</scope> |
272 | | - <systemPath>${project.basedir}/lib/Residence5.1.6.2.jar</systemPath> |
| 264 | + <scope>provided</scope> |
273 | 265 | </dependency> |
274 | 266 | <dependency> |
275 | 267 | <groupId>com.github.GriefPrevention</groupId> |
|
386 | 378 | <groupId>com.github.Zrips</groupId> |
387 | 379 | <artifactId>CMI-API</artifactId> |
388 | 380 | <version>9.7.14.3</version> |
389 | | - <scope>system</scope> |
390 | | - <systemPath>${project.basedir}/lib/CMI-API-9.7.14.3.jar</systemPath> |
| 381 | + <scope>provided</scope> |
391 | 382 | </dependency> |
392 | 383 | <dependency> |
393 | 384 | <groupId>de.oliver</groupId> |
|
404 | 395 | </dependencies> |
405 | 396 | <build> |
406 | 397 | <plugins> |
| 398 | + <plugin> |
| 399 | + <groupId>org.apache.maven.plugins</groupId> |
| 400 | + <artifactId>maven-install-plugin</artifactId> |
| 401 | + <version>3.1.2</version> |
| 402 | + <executions> |
| 403 | + <execution> |
| 404 | + <id>install-local-jars</id> |
| 405 | + <phase>initialize</phase> |
| 406 | + <goals> |
| 407 | + <goal>install-file</goal> |
| 408 | + </goals> |
| 409 | + <configuration> |
| 410 | + <file>${project.basedir}/lib/LegacyCodesCompatibility.jar</file> |
| 411 | + <groupId>cn.superiormc.ultimateshop</groupId> |
| 412 | + <artifactId>LegacyCodesCompatibility</artifactId> |
| 413 | + <version>1.0.0</version> |
| 414 | + <packaging>jar</packaging> |
| 415 | + </configuration> |
| 416 | + </execution> |
| 417 | + <execution> |
| 418 | + <id>install-mythiclib</id> |
| 419 | + <phase>initialize</phase> |
| 420 | + <goals><goal>install-file</goal></goals> |
| 421 | + <configuration> |
| 422 | + <file>${project.basedir}/lib/MythicLib-dist-1.7.1-20251205.145545-63.jar</file> |
| 423 | + <groupId>io.lumine</groupId> |
| 424 | + <artifactId>MythicLib</artifactId> |
| 425 | + <version>1.7.1</version> |
| 426 | + <packaging>jar</packaging> |
| 427 | + </configuration> |
| 428 | + </execution> |
| 429 | + <execution> |
| 430 | + <id>install-mmoitems</id> |
| 431 | + <phase>initialize</phase> |
| 432 | + <goals><goal>install-file</goal></goals> |
| 433 | + <configuration> |
| 434 | + <file>${project.basedir}/lib/MMOItems-API-6.10.1-20251204.191337-43.jar</file> |
| 435 | + <groupId>net.Indyuce</groupId> |
| 436 | + <artifactId>MMOItems-API</artifactId> |
| 437 | + <version>6.10.1-SNAPSHOT</version> |
| 438 | + <packaging>jar</packaging> |
| 439 | + </configuration> |
| 440 | + </execution> |
| 441 | + <execution> |
| 442 | + <id>install-advancedenchantments</id> |
| 443 | + <phase>initialize</phase> |
| 444 | + <goals><goal>install-file</goal></goals> |
| 445 | + <configuration> |
| 446 | + <file>${project.basedir}/lib/AdvancedEnchantmentsAPI.jar</file> |
| 447 | + <groupId>net.advancedplugins</groupId> |
| 448 | + <artifactId>AdvancedEnchantments</artifactId> |
| 449 | + <version>1.0.0</version> |
| 450 | + <packaging>jar</packaging> |
| 451 | + </configuration> |
| 452 | + </execution> |
| 453 | + <execution> |
| 454 | + <id>install-royaleeconomy</id> |
| 455 | + <phase>initialize</phase> |
| 456 | + <goals><goal>install-file</goal></goals> |
| 457 | + <configuration> |
| 458 | + <file>${project.basedir}/lib/RoyaleEconomyAPI.jar</file> |
| 459 | + <groupId>me.qKing12</groupId> |
| 460 | + <artifactId>RoyaleEconomyAPI</artifactId> |
| 461 | + <version>1.0.0</version> |
| 462 | + <packaging>jar</packaging> |
| 463 | + </configuration> |
| 464 | + </execution> |
| 465 | + <execution> |
| 466 | + <id>install-score</id> |
| 467 | + <phase>initialize</phase> |
| 468 | + <goals><goal>install-file</goal></goals> |
| 469 | + <configuration> |
| 470 | + <file>${project.basedir}/lib/SCore-5.24.7.9.jar</file> |
| 471 | + <groupId>com.ssomar.score</groupId> |
| 472 | + <artifactId>SCore</artifactId> |
| 473 | + <version>5.24.7.8</version> |
| 474 | + <packaging>jar</packaging> |
| 475 | + </configuration> |
| 476 | + </execution> |
| 477 | + <execution> |
| 478 | + <id>install-executableitems</id> |
| 479 | + <phase>initialize</phase> |
| 480 | + <goals><goal>install-file</goal></goals> |
| 481 | + <configuration> |
| 482 | + <file>${project.basedir}/lib/ExecutableItems-7.24.7.9.jar</file> |
| 483 | + <groupId>com.ssomar.score</groupId> |
| 484 | + <artifactId>ExecutableItems</artifactId> |
| 485 | + <version>7.24.7.9</version> |
| 486 | + <packaging>jar</packaging> |
| 487 | + </configuration> |
| 488 | + </execution> |
| 489 | + <execution> |
| 490 | + <id>install-residence</id> |
| 491 | + <phase>initialize</phase> |
| 492 | + <goals><goal>install-file</goal></goals> |
| 493 | + <configuration> |
| 494 | + <file>${project.basedir}/lib/Residence5.1.6.2.jar</file> |
| 495 | + <groupId>com.bekvon.bukkit.residence</groupId> |
| 496 | + <artifactId>Residence</artifactId> |
| 497 | + <version>5.1.6.2</version> |
| 498 | + <packaging>jar</packaging> |
| 499 | + </configuration> |
| 500 | + </execution> |
| 501 | + <execution> |
| 502 | + <id>install-cmi-api</id> |
| 503 | + <phase>initialize</phase> |
| 504 | + <goals><goal>install-file</goal></goals> |
| 505 | + <configuration> |
| 506 | + <file>${project.basedir}/lib/CMI-API-9.7.14.3.jar</file> |
| 507 | + <groupId>com.github.Zrips</groupId> |
| 508 | + <artifactId>CMI-API</artifactId> |
| 509 | + <version>9.7.14.3</version> |
| 510 | + <packaging>jar</packaging> |
| 511 | + </configuration> |
| 512 | + </execution> |
| 513 | + </executions> |
| 514 | + </plugin> |
407 | 515 | <plugin> |
408 | 516 | <groupId>org.apache.maven.plugins</groupId> |
409 | 517 | <artifactId>maven-compiler-plugin</artifactId> |
|
0 commit comments