pom.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <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">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>org.leumasjaffe</groupId>
  4. <artifactId>recipe</artifactId>
  5. <version>0.0.1-SNAPSHOT</version>
  6. <build>
  7. <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
  8. <plugins>
  9. <plugin>
  10. <artifactId>maven-compiler-plugin</artifactId>
  11. <version>3.5.1</version>
  12. <configuration>
  13. <compilerVersion>1.8</compilerVersion>
  14. <source>1.8</source>
  15. <target>1.8</target>
  16. </configuration>
  17. </plugin>
  18. <plugin>
  19. <groupId>org.projectlombok</groupId>
  20. <artifactId>lombok-maven-plugin</artifactId>
  21. <version>1.16.18.0</version>
  22. <executions>
  23. <execution>
  24. <id>delombok</id>
  25. <phase>generate-sources</phase>
  26. <goals>
  27. <goal>delombok</goal>
  28. </goals>
  29. <?m2e ignore?>
  30. </execution>
  31. </executions>
  32. <configuration>
  33. <addOutputDirectory>false</addOutputDirectory>
  34. </configuration>
  35. </plugin>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-dependency-plugin</artifactId>
  39. <version>2.5.1</version>
  40. <executions>
  41. <execution>
  42. <id>copy-dependencies</id>
  43. <phase>package</phase>
  44. <goals>
  45. <goal>copy-dependencies</goal>
  46. </goals>
  47. <configuration>
  48. <outputDirectory>
  49. ${project.build.directory}/dependency-jars/
  50. </outputDirectory>
  51. </configuration>
  52. </execution>
  53. </executions>
  54. </plugin>
  55. </plugins>
  56. </build>
  57. <dependencies>
  58. <dependency>
  59. <groupId>org.leumasjaffe</groupId>
  60. <artifactId>event</artifactId>
  61. <version>0.1</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.swinglabs</groupId>
  65. <artifactId>swingx</artifactId>
  66. <version>1.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.projectlombok</groupId>
  70. <artifactId>lombok</artifactId>
  71. <version>1.18.16</version>
  72. <scope>provided</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.fasterxml.jackson.core</groupId>
  76. <artifactId>jackson-databind</artifactId>
  77. <version>2.12.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.fasterxml.jackson.datatype</groupId>
  81. <artifactId>jackson-datatype-jdk8</artifactId>
  82. <version>2.9.6</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <version>4.12</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.hamcrest</groupId>
  92. <artifactId>hamcrest-all</artifactId>
  93. <version>1.3</version>
  94. <scope>test</scope>
  95. </dependency>
  96. </dependencies>
  97. </project>