pom.xml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. <build>
  8. <pluginManagement>
  9. <plugins>
  10. <plugin>
  11. <groupId>org.eclipse.m2e</groupId>
  12. <artifactId>lifecycle-mapping</artifactId>
  13. <version>1.0.0</version>
  14. <configuration>
  15. <lifecycleMappingMetadata>
  16. <pluginExecutions>
  17. <pluginExecution>
  18. <pluginExecutionFilter>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok-maven-plugin</artifactId>
  21. <versionRange>[1,)</versionRange>
  22. <goals>
  23. <goal>delombok</goal>
  24. </goals>
  25. </pluginExecutionFilter>
  26. <action>
  27. <ignore />
  28. </action>
  29. </pluginExecution>
  30. </pluginExecutions>
  31. </lifecycleMappingMetadata>
  32. </configuration>
  33. </plugin>
  34. </plugins>
  35. </pluginManagement>
  36. <plugins>
  37. <plugin>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok-maven-plugin</artifactId>
  40. <version>1.16.18.0</version>
  41. <executions>
  42. <execution>
  43. <phase>generate-sources</phase>
  44. <goals>
  45. <goal>delombok</goal>
  46. </goals>
  47. </execution>
  48. </executions>
  49. <configuration>
  50. <encoding>UTF-8</encoding>
  51. </configuration>
  52. </plugin>
  53. <plugin>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <version>3.5</version>
  56. <configuration>
  57. <sourceDirectory>target/generated-sources</sourceDirectory>
  58. <source>1.8</source>
  59. <target>1.8</target>
  60. <annotationProcessors>
  61. <annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</annotationProcessor>
  62. </annotationProcessors>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. <dependencies>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <version>1.16.8</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-annotations</artifactId>
  77. <version>2.7.3</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.fasterxml.jackson.core</groupId>
  81. <artifactId>jackson-databind</artifactId>
  82. <version>2.7.3</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.google.guava</groupId>
  86. <artifactId>guava</artifactId>
  87. <version>19.0</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.fasterxml.jackson.datatype</groupId>
  91. <artifactId>jackson-datatype-jdk8</artifactId>
  92. <version>2.7.3</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.swinglabs</groupId>
  96. <artifactId>swingx</artifactId>
  97. <version>1.6.1</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>junit</groupId>
  101. <artifactId>junit</artifactId>
  102. <version>4.12</version>
  103. <scope>test</scope>
  104. </dependency>
  105. </dependencies>
  106. </project>