pom.xml 8.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>se.citerus</groupId>
  5. <artifactId>dddsample</artifactId>
  6. <name>DDDSample</name>
  7. <version>2.0-SNAPSHOT</version>
  8. <parent>
  9. <groupId>org.springframework.boot</groupId>
  10. <artifactId>spring-boot-starter-parent</artifactId>
  11. <version>1.4.2.RELEASE</version>
  12. </parent>
  13. <description>This application shows a few key concepts of
  14. Domain Driven Design implemented in Enterprise Java.
  15. </description>
  16. <url>http://dddsample.sourceforge.net</url>
  17. <distributionManagement>
  18. <site>
  19. <id>sf</id>
  20. <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs/preview</url>
  21. </site>
  22. </distributionManagement>
  23. <ciManagement/>
  24. <developers>
  25. <developer>
  26. <id>eric_evans</id>
  27. <name>Eric Evans</name>
  28. <organization>Domain Language, Inc.</organization>
  29. <organizationUrl>http://www.domainlanguage.com</organizationUrl>
  30. <timezone>-8</timezone>
  31. </developer>
  32. <developer>
  33. <id>peba</id>
  34. <name>Peter Backlund</name>
  35. <organization>Citerus</organization>
  36. <organizationUrl>http://www.citerus.se</organizationUrl>
  37. <timezone>+1</timezone>
  38. </developer>
  39. <developer>
  40. <id>patrikfr</id>
  41. <name>Patrik Fredriksson</name>
  42. <organization>Citerus</organization>
  43. <organizationUrl>http://www.citerus.se</organizationUrl>
  44. <timezone>+1</timezone>
  45. </developer>
  46. <developer>
  47. <id>jeham</id>
  48. <name>Jesper Hammarback</name>
  49. <organization>Citerus</organization>
  50. <organizationUrl>http://www.citerus.se</organizationUrl>
  51. <timezone>+1</timezone>
  52. </developer>
  53. <developer>
  54. <id>jorgen_falk</id>
  55. <name>Jorgen Falk</name>
  56. <organization>Citerus</organization>
  57. <organizationUrl>http://www.citerus.se</organizationUrl>
  58. <timezone>+1</timezone>
  59. </developer>
  60. </developers>
  61. <licenses>
  62. <license>
  63. <name>MIT</name>
  64. <url>http://www.opensource.org/licenses/mit-license.php</url>
  65. <distribution>repo</distribution>
  66. </license>
  67. </licenses>
  68. <scm>
  69. <developerConnection>scm:git:https://github.com/citerus/dddsample-core</developerConnection>
  70. <url>https://github.com/citerus/dddsample-core</url>
  71. </scm>
  72. <properties>
  73. <java.version>1.8</java.version>
  74. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  75. <!-- Plugin versions -->
  76. <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
  77. </properties>
  78. <build>
  79. <plugins>
  80. <!-- Compiler -->
  81. <plugin>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>${maven-compiler-plugin.version}</version>
  84. <configuration>
  85. <source>${java.version}</source>
  86. <target>${java.version}</target>
  87. <encoding>${project.build.sourceEncoding}</encoding>
  88. </configuration>
  89. </plugin>
  90. <plugin>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-maven-plugin</artifactId>
  93. </plugin>
  94. </plugins>
  95. </build>
  96. <dependencies>
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <version>4.12</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework.boot</groupId>
  109. <artifactId>spring-boot-starter-jdbc</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-starter-test</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.springframework</groupId>
  117. <artifactId>spring-jms</artifactId>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework</groupId>
  121. <artifactId>spring-orm</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.cxf</groupId>
  125. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  126. <version>3.1.7</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.hibernate</groupId>
  130. <artifactId>hibernate-core</artifactId>
  131. <version>4.3.5.Final</version>
  132. <!-- God, what is it with Java and logging frameworks... http://forum.hibernate.org/viewtopic.php?p=2401380 -->
  133. <exclusions>
  134. <exclusion>
  135. <groupId>org.slf4j</groupId>
  136. <artifactId>slf4j-api</artifactId>
  137. </exclusion>
  138. </exclusions>
  139. </dependency>
  140. <dependency>
  141. <groupId>commons-collections</groupId>
  142. <artifactId>commons-collections</artifactId>
  143. <version>3.2.2</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>javassist</groupId>
  147. <artifactId>javassist</artifactId>
  148. <version>3.8.0.GA</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>commons-lang</groupId>
  152. <artifactId>commons-lang</artifactId>
  153. <version>2.3</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>commons-io</groupId>
  157. <artifactId>commons-io</artifactId>
  158. <version>1.3.1</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>commons-dbcp</groupId>
  162. <artifactId>commons-dbcp</artifactId>
  163. <version>1.2.2</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>org.hsqldb</groupId>
  167. <artifactId>hsqldb</artifactId>
  168. <version>2.3.3</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>javax.servlet</groupId>
  172. <artifactId>javax.servlet-api</artifactId>
  173. <version>3.1.0</version>
  174. <scope>provided</scope>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.apache.activemq</groupId>
  178. <artifactId>activemq-core</artifactId>
  179. <version>5.2.0</version>
  180. <exclusions>
  181. <exclusion>
  182. <groupId>commons-logging</groupId>
  183. <artifactId>commons-logging-api</artifactId>
  184. </exclusion>
  185. </exclusions>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.xbean</groupId>
  189. <artifactId>xbean-spring</artifactId>
  190. <version>3.4.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>org.easymock</groupId>
  194. <artifactId>easymock</artifactId>
  195. <version>2.3</version>
  196. <scope>test</scope>
  197. </dependency>
  198. </dependencies>
  199. <reporting>
  200. <plugins>
  201. <!-- Javadoc -->
  202. <plugin>
  203. <artifactId>maven-javadoc-plugin</artifactId>
  204. </plugin>
  205. <!-- Source code cross reference -->
  206. <plugin>
  207. <artifactId>maven-jxr-plugin</artifactId>
  208. </plugin>
  209. <!-- Test report -->
  210. <plugin>
  211. <artifactId>maven-surefire-report-plugin</artifactId>
  212. </plugin>
  213. <!-- Test coverage -->
  214. <plugin>
  215. <groupId>org.codehaus.mojo</groupId>
  216. <artifactId>cobertura-maven-plugin</artifactId>
  217. </plugin>
  218. <!-- CheckStyle report -->
  219. <plugin>
  220. <artifactId>maven-checkstyle-plugin</artifactId>
  221. <configuration>
  222. <configLocation>src/main/config/checkstyle.xml</configLocation>
  223. <!-- Java source code generated from WSDL -->
  224. <excludes>**/com/aggregator/**/*</excludes>
  225. </configuration>
  226. </plugin>
  227. </plugins>
  228. </reporting>
  229. </project>