pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. <pluginManagement>
  8. <plugins>
  9. <plugin>
  10. <groupId>org.eclipse.m2e</groupId>
  11. <artifactId>lifecycle-mapping</artifactId>
  12. <version>1.0.0</version>
  13. <configuration>
  14. <lifecycleMappingMetadata>
  15. <pluginExecutions>
  16. <pluginExecution>
  17. <pluginExecutionFilter>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok-maven-plugin</artifactId>
  20. <versionRange>[1,)</versionRange>
  21. <goals>
  22. <goal>delombok</goal>
  23. </goals>
  24. </pluginExecutionFilter>
  25. <action>
  26. <ignore />
  27. </action>
  28. </pluginExecution>
  29. </pluginExecutions>
  30. </lifecycleMappingMetadata>
  31. </configuration>
  32. </plugin>
  33. </plugins>
  34. </pluginManagement>
  35. <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
  36. <plugins>
  37. <plugin>
  38. <artifactId>maven-compiler-plugin</artifactId>
  39. <version>3.5.1</version>
  40. <configuration>
  41. <compilerVersion>1.8</compilerVersion>
  42. <source>1.8</source>
  43. <target>1.8</target>
  44. </configuration>
  45. </plugin>
  46. <plugin>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok-maven-plugin</artifactId>
  49. <version>1.16.18.0</version>
  50. <executions>
  51. <execution>
  52. <id>delombok</id>
  53. <phase>generate-sources</phase>
  54. <goals>
  55. <goal>delombok</goal>
  56. </goals>
  57. </execution>
  58. </executions>
  59. <configuration>
  60. <addOutputDirectory>false</addOutputDirectory>
  61. </configuration>
  62. </plugin>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-dependency-plugin</artifactId>
  66. <version>2.5.1</version>
  67. <executions>
  68. <execution>
  69. <id>copy-dependencies</id>
  70. <phase>package</phase>
  71. <goals>
  72. <goal>copy-dependencies</goal>
  73. </goals>
  74. <configuration>
  75. <outputDirectory>
  76. ${project.build.directory}/dependency-jars/
  77. </outputDirectory>
  78. </configuration>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. <dependencies>
  85. <dependency>
  86. <groupId>org.leumasjaffe</groupId>
  87. <artifactId>container</artifactId>
  88. <version>0.2.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.leumasjaffe</groupId>
  92. <artifactId>event</artifactId>
  93. <version>0.1</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.swinglabs</groupId>
  97. <artifactId>swingx</artifactId>
  98. <version>1.6.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.projectlombok</groupId>
  102. <artifactId>lombok</artifactId>
  103. <version>1.16.8</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.fasterxml.jackson.core</groupId>
  108. <artifactId>jackson-databind</artifactId>
  109. <version>2.7.3</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>junit</groupId>
  113. <artifactId>junit</artifactId>
  114. <version>4.12</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.hamcrest</groupId>
  119. <artifactId>hamcrest-all</artifactId>
  120. <version>1.3</version>
  121. <scope>test</scope>
  122. </dependency>
  123. </dependencies>
  124. </project>