pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. 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>samjaffe</groupId>
  5. <artifactId>d20-charsheet</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <properties>
  8. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9. </properties>
  10. <build>
  11. <pluginManagement>
  12. <plugins>
  13. <plugin>
  14. <groupId>org.eclipse.m2e</groupId>
  15. <artifactId>lifecycle-mapping</artifactId>
  16. <version>1.0.0</version>
  17. <configuration>
  18. <lifecycleMappingMetadata>
  19. <pluginExecutions>
  20. <pluginExecution>
  21. <pluginExecutionFilter>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok-maven-plugin</artifactId>
  24. <versionRange>[1,)</versionRange>
  25. <goals>
  26. <goal>delombok</goal>
  27. </goals>
  28. </pluginExecutionFilter>
  29. <action>
  30. <ignore />
  31. </action>
  32. </pluginExecution>
  33. </pluginExecutions>
  34. </lifecycleMappingMetadata>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </pluginManagement>
  39. <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
  40. <plugins>
  41. <plugin>
  42. <artifactId>maven-compiler-plugin</artifactId>
  43. <version>3.5.1</version>
  44. <configuration>
  45. <compilerVersion>1.8</compilerVersion>
  46. <source>1.8</source>
  47. <target>1.8</target>
  48. </configuration>
  49. </plugin>
  50. <plugin>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok-maven-plugin</artifactId>
  53. <version>1.16.18.0</version>
  54. <executions>
  55. <execution>
  56. <id>delombok</id>
  57. <phase>generate-sources</phase>
  58. <goals>
  59. <goal>delombok</goal>
  60. </goals>
  61. </execution>
  62. </executions>
  63. <configuration>
  64. <addOutputDirectory>false</addOutputDirectory>
  65. </configuration>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-jar-plugin</artifactId>
  70. <version>2.4</version>
  71. <configuration>
  72. <archive>
  73. <manifest>
  74. <addClasspath>true</addClasspath>
  75. <mainClass>org.leumasjaffe.charsheet.Test</mainClass>
  76. <classpathPrefix>dependency-jars/</classpathPrefix>
  77. </manifest>
  78. </archive>
  79. </configuration>
  80. </plugin>
  81. <plugin>
  82. <groupId>org.apache.maven.plugins</groupId>
  83. <artifactId>maven-dependency-plugin</artifactId>
  84. <version>2.5.1</version>
  85. <executions>
  86. <execution>
  87. <id>copy-dependencies</id>
  88. <phase>package</phase>
  89. <goals>
  90. <goal>copy-dependencies</goal>
  91. </goals>
  92. <configuration>
  93. <outputDirectory>
  94. ${project.build.directory}/dependency-jars/
  95. </outputDirectory>
  96. </configuration>
  97. </execution>
  98. </executions>
  99. </plugin>
  100. </plugins>
  101. </build>
  102. <dependencies>
  103. <dependency>
  104. <groupId>org.projectlombok</groupId>
  105. <artifactId>lombok</artifactId>
  106. <version>1.16.8</version>
  107. <scope>provided</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>com.fasterxml.jackson.core</groupId>
  111. <artifactId>jackson-annotations</artifactId>
  112. <version>2.7.3</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.fasterxml.jackson.core</groupId>
  116. <artifactId>jackson-databind</artifactId>
  117. <version>2.7.3</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.google.guava</groupId>
  121. <artifactId>guava</artifactId>
  122. <version>19.0</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.fasterxml.jackson.datatype</groupId>
  126. <artifactId>jackson-datatype-jdk8</artifactId>
  127. <version>2.7.3</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.swinglabs</groupId>
  131. <artifactId>swingx</artifactId>
  132. <version>1.6.1</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>junit</groupId>
  136. <artifactId>junit</artifactId>
  137. <version>4.12</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.logging.log4j</groupId>
  142. <artifactId>log4j-api</artifactId>
  143. <version>2.8.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.apache.logging.log4j</groupId>
  147. <artifactId>log4j-core</artifactId>
  148. <version>2.8.2</version>
  149. </dependency>
  150. </dependencies>
  151. </project>