pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. <artifactId>d20-charsheet</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <properties>
  7. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  8. </properties>
  9. <build>
  10. <pluginManagement>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.eclipse.m2e</groupId>
  14. <artifactId>lifecycle-mapping</artifactId>
  15. <version>1.0.0</version>
  16. <configuration>
  17. <lifecycleMappingMetadata>
  18. <pluginExecutions>
  19. <pluginExecution>
  20. <pluginExecutionFilter>
  21. <groupId>org.projectlombok</groupId>
  22. <artifactId>lombok-maven-plugin</artifactId>
  23. <versionRange>[1,)</versionRange>
  24. <goals>
  25. <goal>delombok</goal>
  26. </goals>
  27. </pluginExecutionFilter>
  28. <action>
  29. <ignore />
  30. </action>
  31. </pluginExecution>
  32. </pluginExecutions>
  33. </lifecycleMappingMetadata>
  34. </configuration>
  35. </plugin>
  36. </plugins>
  37. </pluginManagement>
  38. <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
  39. <plugins>
  40. <plugin>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.5.1</version>
  43. <configuration>
  44. <compilerVersion>1.8</compilerVersion>
  45. <source>1.8</source>
  46. <target>1.8</target>
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok-maven-plugin</artifactId>
  52. <version>1.16.18.0</version>
  53. <executions>
  54. <execution>
  55. <id>delombok</id>
  56. <phase>generate-sources</phase>
  57. <goals>
  58. <goal>delombok</goal>
  59. </goals>
  60. </execution>
  61. </executions>
  62. <configuration>
  63. <addOutputDirectory>false</addOutputDirectory>
  64. </configuration>
  65. </plugin>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-assembly-plugin</artifactId>
  69. <version>2.4</version>
  70. <configuration>
  71. <archive>
  72. <manifest>
  73. <addClasspath>true</addClasspath>
  74. <mainClass>org.leumasjaffe.charsheet.Test</mainClass>
  75. <classpathPrefix>dependency-jars/</classpathPrefix>
  76. </manifest>
  77. </archive>
  78. <descriptorRefs>
  79. <descriptorRef>jar-with-dependencies</descriptorRef>
  80. </descriptorRefs>
  81. </configuration>
  82. <executions>
  83. <execution>
  84. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  85. <phase>package</phase> <!-- bind to the packaging phase -->
  86. <goals>
  87. <goal>single</goal>
  88. </goals>
  89. </execution>
  90. </executions>
  91. </plugin>
  92. <plugin>
  93. <groupId>org.apache.maven.plugins</groupId>
  94. <artifactId>maven-dependency-plugin</artifactId>
  95. <version>2.5.1</version>
  96. <executions>
  97. <execution>
  98. <id>copy-dependencies</id>
  99. <phase>package</phase>
  100. <goals>
  101. <goal>copy-dependencies</goal>
  102. </goals>
  103. <configuration>
  104. <outputDirectory>
  105. ${project.build.directory}/dependency-jars/
  106. </outputDirectory>
  107. </configuration>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. <dependencies>
  114. <dependency>
  115. <groupId>org.projectlombok</groupId>
  116. <artifactId>lombok</artifactId>
  117. <version>1.16.8</version>
  118. <scope>provided</scope>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.fasterxml.jackson.core</groupId>
  122. <artifactId>jackson-annotations</artifactId>
  123. <version>2.7.3</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.fasterxml.jackson.core</groupId>
  127. <artifactId>jackson-databind</artifactId>
  128. <version>2.7.3</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.google.guava</groupId>
  132. <artifactId>guava</artifactId>
  133. <version>19.0</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.fasterxml.jackson.datatype</groupId>
  137. <artifactId>jackson-datatype-jdk8</artifactId>
  138. <version>2.7.3</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.swinglabs</groupId>
  142. <artifactId>swingx</artifactId>
  143. <version>1.6.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>junit</groupId>
  147. <artifactId>junit</artifactId>
  148. <version>4.12</version>
  149. <scope>test</scope>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.apache.logging.log4j</groupId>
  153. <artifactId>log4j-api</artifactId>
  154. <version>2.8.2</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.logging.log4j</groupId>
  158. <artifactId>log4j-core</artifactId>
  159. <version>2.8.2</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.leumasjaffe</groupId>
  163. <artifactId>event</artifactId>
  164. <version>0.1</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.leumasjaffe</groupId>
  168. <artifactId>graphics</artifactId>
  169. <version>0.1</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.leumasjaffe</groupId>
  173. <artifactId>observer</artifactId>
  174. <version>0.3</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.leumasjaffe</groupId>
  178. <artifactId>format</artifactId>
  179. <version>0.1</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.leumasjaffe</groupId>
  183. <artifactId>function</artifactId>
  184. <version>0.1</version>
  185. </dependency>
  186. </dependencies>
  187. <parent>
  188. <groupId>org.leumasjaffe</groupId>
  189. <artifactId>d20-charsheet-aggregator</artifactId>
  190. <version>0.1</version>
  191. <relativePath>include/pom.xml</relativePath>
  192. </parent>
  193. </project>