123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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.5.7.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. <assertj.version>3.8.0</assertj.version>
  75. <hibernate.version>4.3.5.Final</hibernate.version>
  76. </properties>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. </plugin>
  83. </plugins>
  84. </build>
  85. <dependencies>
  86. <dependency>
  87. <groupId>org.springframework.boot</groupId>
  88. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-jdbc</artifactId>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-activemq</artifactId>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-orm</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.cxf</groupId>
  104. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  105. <version>3.1.12</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.hibernate</groupId>
  109. <artifactId>hibernate-core</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-collections</groupId>
  113. <artifactId>commons-collections</artifactId>
  114. <version>3.2.2</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-lang</groupId>
  118. <artifactId>commons-lang</artifactId>
  119. <version>2.3</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-io</groupId>
  123. <artifactId>commons-io</artifactId>
  124. <version>2.4</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>commons-dbcp</groupId>
  128. <artifactId>commons-dbcp</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.hsqldb</groupId>
  132. <artifactId>hsqldb</artifactId>
  133. </dependency>
  134. <dependency>
  135. <groupId>javax.servlet</groupId>
  136. <artifactId>javax.servlet-api</artifactId>
  137. <scope>provided</scope>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.activemq</groupId>
  141. <artifactId>activemq-spring</artifactId>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.apache.xbean</groupId>
  145. <artifactId>xbean-spring</artifactId>
  146. <version>3.4.3</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>org.springframework.boot</groupId>
  150. <artifactId>spring-boot-starter-test</artifactId>
  151. <scope>test</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.easymock</groupId>
  155. <artifactId>easymock</artifactId>
  156. <version>2.3</version>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.assertj</groupId>
  161. <artifactId>assertj-core</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.seleniumhq.selenium</groupId>
  166. <artifactId>selenium-java</artifactId>
  167. <scope>test</scope>
  168. </dependency>
  169. </dependencies>
  170. <reporting>
  171. <plugins>
  172. <!-- Javadoc -->
  173. <plugin>
  174. <artifactId>maven-javadoc-plugin</artifactId>
  175. </plugin>
  176. <!-- Source code cross reference -->
  177. <plugin>
  178. <artifactId>maven-jxr-plugin</artifactId>
  179. </plugin>
  180. <!-- Test report -->
  181. <plugin>
  182. <artifactId>maven-surefire-report-plugin</artifactId>
  183. </plugin>
  184. <!-- Test coverage -->
  185. <plugin>
  186. <groupId>org.codehaus.mojo</groupId>
  187. <artifactId>cobertura-maven-plugin</artifactId>
  188. </plugin>
  189. <!-- CheckStyle report -->
  190. <plugin>
  191. <artifactId>maven-checkstyle-plugin</artifactId>
  192. <configuration>
  193. <configLocation>src/main/config/checkstyle.xml</configLocation>
  194. <!-- Java source code generated from WSDL -->
  195. <excludes>**/com/aggregator/**/*</excludes>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. </reporting>
  200. </project>