pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>me.hammerle</groupId>
  5. <artifactId>snuviscript</artifactId>
  6. <version>1.0</version>
  7. <packaging>jar</packaging>
  8. <name>SnuviScript</name>
  9. <description></description>
  10. <inceptionYear>2016</inceptionYear>
  11. <developers>
  12. <developer>
  13. <id>kjhammerle</id>
  14. <name>Kajetan Johannes Hammerle</name>
  15. <email>kajetan.johannes.hammerle@gmail.com</email>
  16. <url>https://git.hammerle.me/kjhammerle</url>
  17. </developer>
  18. </developers>
  19. <properties>
  20. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  21. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  22. <basePackage>me.hammerle</basePackage>
  23. <mainClass>${basePackage}.snuviscript.SnuviScript</mainClass>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <version>4.12</version>
  30. <scope>test</scope>
  31. </dependency>
  32. </dependencies>
  33. <build>
  34. <defaultGoal>install</defaultGoal>
  35. <plugins>
  36. <plugin>
  37. <artifactId>maven-compiler-plugin</artifactId>
  38. <version>3.6.2</version>
  39. <configuration>
  40. <source>1.8</source>
  41. <target>1.8</target>
  42. <optimize>true</optimize>
  43. <compilerArgs>
  44. <arg>-Xlint:all</arg>
  45. </compilerArgs>
  46. <showWarnings>true</showWarnings>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <artifactId>maven-surefire-plugin</artifactId>
  51. <version>2.20</version>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-jar-plugin</artifactId>
  55. <version>3.0.2</version>
  56. <configuration>
  57. <archive>
  58. <manifest>
  59. <addClasspath>true</addClasspath>
  60. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  61. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  62. <classpathLayoutType>repository</classpathLayoutType>
  63. <mainClass>${mainClass}</mainClass>
  64. </manifest>
  65. </archive>
  66. </configuration>
  67. </plugin>
  68. <plugin>
  69. <artifactId>maven-source-plugin</artifactId>
  70. <version>3.0.1</version>
  71. <executions>
  72. <execution>
  73. <id>attach-sources</id>
  74. <phase>package</phase>
  75. <goals>
  76. <goal>jar</goal>
  77. </goals>
  78. </execution>
  79. </executions>
  80. </plugin>
  81. <plugin>
  82. <artifactId>maven-javadoc-plugin</artifactId>
  83. <version>3.0.0-M1</version>
  84. <executions>
  85. <execution>
  86. <id>attach-javadocs</id>
  87. <phase>package</phase>
  88. <goals>
  89. <goal>jar</goal>
  90. </goals>
  91. </execution>
  92. </executions>
  93. <configuration>
  94. <show>public</show>
  95. <quiet>true</quiet>
  96. </configuration>
  97. </plugin>
  98. </plugins>
  99. </build>
  100. </project>