pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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.1</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. </modules>
  27. <repositories>
  28. <repository>
  29. <id>spigot-repo</id>
  30. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  31. </repository>
  32. <repository>
  33. <id>vault-repo</id>
  34. <url>http://nexus.hc.to/content/repositories/pub_releases</url>
  35. </repository>
  36. <repository>
  37. <id>ess-repo</id>
  38. <url>http://repo.ess3.net/content/groups/essentials</url>
  39. </repository>
  40. </repositories>
  41. <build>
  42. <defaultGoal>clean package install</defaultGoal>
  43. <finalName>${project.name}</finalName>
  44. <sourceDirectory>src/main/java</sourceDirectory>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.1</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-jar-plugin</artifactId>
  58. <version>2.4</version>
  59. <configuration>
  60. <archive>
  61. <addMavenDescriptor>false</addMavenDescriptor>
  62. </archive>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>