pom.xml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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-jar-plugin</artifactId>
  61. <version>3.1.0</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. </configuration>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. <dependencies>
  75. <dependency>
  76. <groupId>org.leumasjaffe</groupId>
  77. <artifactId>observer</artifactId>
  78. <version>0.5.0</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.leumasjaffe</groupId>
  82. <artifactId>event</artifactId>
  83. <version>0.1</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.swinglabs</groupId>
  87. <artifactId>swingx</artifactId>
  88. <version>1.6.1</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.projectlombok</groupId>
  92. <artifactId>lombok</artifactId>
  93. <version>1.18.16</version>
  94. <scope>provided</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.fasterxml.jackson.core</groupId>
  98. <artifactId>jackson-databind</artifactId>
  99. <version>2.12.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.fasterxml.jackson.datatype</groupId>
  103. <artifactId>jackson-datatype-jdk8</artifactId>
  104. <version>2.9.6</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>junit</groupId>
  108. <artifactId>junit</artifactId>
  109. <version>4.12</version>
  110. <scope>test</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.hamcrest</groupId>
  114. <artifactId>hamcrest-all</artifactId>
  115. <version>1.3</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.leumasjaffe</groupId>
  119. <artifactId>container</artifactId>
  120. <version>0.3.0</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.junit.platform</groupId>
  124. <artifactId>junit-platform-runner</artifactId>
  125. <version>1.7.0</version>
  126. <scope>test</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.junit.jupiter</groupId>
  130. <artifactId>junit-jupiter-engine</artifactId>
  131. <version>5.7.0</version>
  132. <scope>test</scope>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.junit.jupiter</groupId>
  136. <artifactId>junit-jupiter-api</artifactId>
  137. <version>5.7.0</version>
  138. <scope>test</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.junit.jupiter</groupId>
  142. <artifactId>junit-jupiter-params</artifactId>
  143. <version>5.7.0</version>
  144. <scope>test</scope>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.mockito</groupId>
  148. <artifactId>mockito-junit-jupiter</artifactId>
  149. <version>3.6.28</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.mockito</groupId>
  153. <artifactId>mockito-core</artifactId>
  154. <version>3.6.28</version>
  155. </dependency>
  156. </dependencies>
  157. </project>