Guest User

pom.xml 2.0

a guest
Oct 13th, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <project xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  5. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7.  
  8. <groupId>adodvstudios</groupId>
  9. <artifactId>cosmos</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. <packaging>jar</packaging>
  12.  
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-shade-plugin</artifactId>
  18. <version>3.2.4</version>
  19. <executions>
  20. <execution>
  21. <phase>package</phase>
  22. <goals>
  23. <goal>shade</goal>
  24. </goals>
  25. <configuration>
  26. <createDependencyReducedPom>false</createDependencyReducedPom>
  27. </configuration>
  28. </execution>
  29. </executions>
  30. </plugin>
  31. </plugins>
  32. </build>
  33. <repositories>
  34. <repository>
  35. <id>inventive-repo</id>
  36. <url>https://repo.inventivetalent.org/content/groups/public/</url>
  37. </repository>
  38. <repository>
  39. <id>spigotmc-repo</id>
  40. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  41. </repository>
  42. </repositories>
  43. <dependencies>
  44. <dependency>
  45. <groupId>org.bukkit</groupId>
  46. <artifactId>bukkit</artifactId>
  47. <version>1.12.2-R0.1-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.inventivetalent</groupId>
  51. <artifactId>menubuilder</artifactId>
  52. <version>1.0.2</version>
  53. </dependency>
  54. </dependencies>
  55. </project>
  56.  
Add Comment
Please, Sign In to add comment