pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. <properties>
  7. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  8. </properties>
  9. <build>
  10. <sourceDirectory>target/generated-sources/delombok</sourceDirectory>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <version>3.5.1</version>
  15. <configuration>
  16. <compilerVersion>1.8</compilerVersion>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <groupId>org.projectlombok</groupId>
  23. <artifactId>lombok-maven-plugin</artifactId>
  24. <version>1.18.16.0</version>
  25. <executions>
  26. <execution>
  27. <id>delombok</id>
  28. <phase>generate-sources</phase>
  29. <goals>
  30. <goal>delombok</goal>
  31. </goals>
  32. <?m2e ignore?>
  33. </execution>
  34. </executions>
  35. <configuration>
  36. <addOutputDirectory>false</addOutputDirectory>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-dependency-plugin</artifactId>
  42. <version>2.5.1</version>
  43. <executions>
  44. <execution>
  45. <id>copy-dependencies</id>
  46. <phase>package</phase>
  47. <goals>
  48. <goal>copy-dependencies</goal>
  49. </goals>
  50. <configuration>
  51. <outputDirectory>
  52. ${project.build.directory}/dependency-jars/
  53. </outputDirectory>
  54. </configuration>
  55. </execution>
  56. </executions>
  57. </plugin>
  58. <plugin>
  59. <groupId>org.apache.maven.plugins</groupId>
  60. <artifactId>maven-assembly-plugin</artifactId>
  61. <version>2.4</version>
  62. <configuration>
  63. <archive>
  64. <manifest>
  65. <addClasspath>true</addClasspath>
  66. <classpathPrefix>dependency-jars/</classpathPrefix>
  67. <mainClass>org.leumasjaffe.recipe.RecipeManager</mainClass>
  68. </manifest>
  69. </archive>
  70. <descriptorRefs>
  71. <descriptorRef>jar-with-dependencies</descriptorRef>
  72. </descriptorRefs>
  73. </configuration>
  74. <executions>
  75. <execution>
  76. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  77. <phase>package</phase> <!-- bind to the packaging phase -->
  78. <goals>
  79. <goal>single</goal>
  80. </goals>
  81. </execution>
  82. </executions>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. <dependencies>
  87. <dependency>
  88. <groupId>org.leumasjaffe</groupId>
  89. <artifactId>observer</artifactId>
  90. <version>0.6.0</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.leumasjaffe</groupId>
  94. <artifactId>event</artifactId>
  95. <version>0.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.swinglabs</groupId>
  99. <artifactId>swingx</artifactId>
  100. <version>1.6.1</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.projectlombok</groupId>
  104. <artifactId>lombok</artifactId>
  105. <version>1.18.16</version>
  106. <scope>provided</scope>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.fasterxml.jackson.core</groupId>
  110. <artifactId>jackson-databind</artifactId>
  111. <version>2.12.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.fasterxml.jackson.datatype</groupId>
  115. <artifactId>jackson-datatype-jdk8</artifactId>
  116. <version>2.9.6</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>junit</groupId>
  120. <artifactId>junit</artifactId>
  121. <version>4.12</version>
  122. <scope>test</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.hamcrest</groupId>
  126. <artifactId>hamcrest-all</artifactId>
  127. <version>1.3</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.junit.platform</groupId>
  131. <artifactId>junit-platform-runner</artifactId>
  132. <version>1.7.0</version>
  133. <scope>test</scope>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.junit.jupiter</groupId>
  137. <artifactId>junit-jupiter-engine</artifactId>
  138. <version>5.7.0</version>
  139. <scope>test</scope>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.junit.jupiter</groupId>
  143. <artifactId>junit-jupiter-api</artifactId>
  144. <version>5.7.0</version>
  145. <scope>test</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.junit.jupiter</groupId>
  149. <artifactId>junit-jupiter-params</artifactId>
  150. <version>5.7.0</version>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.mockito</groupId>
  155. <artifactId>mockito-junit-jupiter</artifactId>
  156. <version>3.6.28</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.mockito</groupId>
  160. <artifactId>mockito-core</artifactId>
  161. <version>3.6.28</version>
  162. </dependency>
  163. </dependencies>
  164. </project>