pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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>observer</artifactId>
  61. <version>0.4.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.leumasjaffe</groupId>
  65. <artifactId>event</artifactId>
  66. <version>0.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.swinglabs</groupId>
  70. <artifactId>swingx</artifactId>
  71. <version>1.6.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.projectlombok</groupId>
  75. <artifactId>lombok</artifactId>
  76. <version>1.18.16</version>
  77. <scope>provided</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.fasterxml.jackson.core</groupId>
  81. <artifactId>jackson-databind</artifactId>
  82. <version>2.12.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.fasterxml.jackson.datatype</groupId>
  86. <artifactId>jackson-datatype-jdk8</artifactId>
  87. <version>2.9.6</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>junit</groupId>
  91. <artifactId>junit</artifactId>
  92. <version>4.12</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.hamcrest</groupId>
  97. <artifactId>hamcrest-all</artifactId>
  98. <version>1.3</version>
  99. <scope>test</scope>
  100. </dependency>
  101. </dependencies>
  102. </project>