pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>de.Linus122.TimeIsMoney</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>1.9.6.11</version>
  9. <name>TimeIsMoney Parent</name>
  10. <url>https://www.spigotmc.org/resources/time-is-money.12409/</url>
  11. <packaging>pom</packaging>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. </properties>
  15. <modules>
  16. <module>Plugin</module>
  17. <module>Tools</module>
  18. <module>v1_8_R1</module>
  19. <module>v1_8_R2</module>
  20. <module>v1_8_R3</module>
  21. <module>v1_9_R1</module>
  22. <module>v1_9_R2</module>
  23. <module>v1_10_R1</module>
  24. <module>v1_11_R1</module>
  25. <module>v1_12_R1</module>
  26. <module>v1_13_R1</module>
  27. <module>v1_13_R2</module>
  28. <module>v1_14_R1</module>
  29. <module>v1_15_R1</module>
  30. </modules>
  31. <repositories>
  32. <repository>
  33. <id>spigot-repo</id>
  34. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  35. </repository>
  36. <repository>
  37. <id>vault-repo</id>
  38. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  39. </repository>
  40. <repository>
  41. <id>ess-repo</id>
  42. <url>http://repo.ess3.net/content/groups/essentials</url>
  43. </repository>
  44. </repositories>
  45. <build>
  46. <defaultGoal>clean package install</defaultGoal>
  47. <finalName>${project.name}</finalName>
  48. <sourceDirectory>src/main/java</sourceDirectory>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <version>3.1</version>
  54. <configuration>
  55. <source>1.8</source>
  56. <target>1.8</target>
  57. </configuration>
  58. </plugin>
  59. <plugin>
  60. <groupId>org.apache.maven.plugins</groupId>
  61. <artifactId>maven-jar-plugin</artifactId>
  62. <version>2.4</version>
  63. <configuration>
  64. <archive>
  65. <addMavenDescriptor>false</addMavenDescriptor>
  66. </archive>
  67. </configuration>
  68. </plugin>
  69. </plugins>
  70. </build>
  71. </project>