pom.xml 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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.10.RELEASE</version>
  12. <relativePath></relativePath>
  13. </parent>
  14. <description>This application shows a few key concepts of
  15. Domain Driven Design implemented in Enterprise Java.
  16. </description>
  17. <url>http://dddsample.sourceforge.net</url>
  18. <distributionManagement>
  19. <site>
  20. <id>sf</id>
  21. <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs/preview</url>
  22. </site>
  23. </distributionManagement>
  24. <ciManagement/>
  25. <developers>
  26. <developer>
  27. <id>eric_evans</id>
  28. <name>Eric Evans</name>
  29. <organization>Domain Language, Inc.</organization>
  30. <organizationUrl>http://www.domainlanguage.com</organizationUrl>
  31. <timezone>-8</timezone>
  32. </developer>
  33. <developer>
  34. <id>peba</id>
  35. <name>Peter Backlund</name>
  36. <organization>Citerus</organization>
  37. <organizationUrl>http://www.citerus.se</organizationUrl>
  38. <timezone>+1</timezone>
  39. </developer>
  40. <developer>
  41. <id>patrikfr</id>
  42. <name>Patrik Fredriksson</name>
  43. <organization>Citerus</organization>
  44. <organizationUrl>http://www.citerus.se</organizationUrl>
  45. <timezone>+1</timezone>
  46. </developer>
  47. <developer>
  48. <id>jeham</id>
  49. <name>Jesper Hammarback</name>
  50. <organization>Citerus</organization>
  51. <organizationUrl>http://www.citerus.se</organizationUrl>
  52. <timezone>+1</timezone>
  53. </developer>
  54. <developer>
  55. <id>jorgen_falk</id>
  56. <name>Jorgen Falk</name>
  57. <organization>Citerus</organization>
  58. <organizationUrl>http://www.citerus.se</organizationUrl>
  59. <timezone>+1</timezone>
  60. </developer>
  61. </developers>
  62. <licenses>
  63. <license>
  64. <name>MIT</name>
  65. <url>http://www.opensource.org/licenses/mit-license.php</url>
  66. <distribution>repo</distribution>
  67. </license>
  68. </licenses>
  69. <scm>
  70. <developerConnection>scm:git:https://github.com/citerus/dddsample-core</developerConnection>
  71. <url>https://github.com/citerus/dddsample-core</url>
  72. </scm>
  73. <properties>
  74. <java.version>1.8</java.version>
  75. <assertj.version>3.8.0</assertj.version>
  76. <hibernate.version>4.3.5.Final</hibernate.version>
  77. </properties>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.springframework.boot</groupId>
  82. <artifactId>spring-boot-maven-plugin</artifactId>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. <dependencies>
  87. <dependency>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework.boot</groupId>
  93. <artifactId>spring-boot-starter-jdbc</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-activemq</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework</groupId>
  101. <artifactId>spring-orm</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.cxf</groupId>
  105. <artifactId>cxf-spring-boot-starter-jaxws</artifactId>
  106. <version>3.1.12</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.hibernate</groupId>
  110. <artifactId>hibernate-core</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-collections</groupId>
  114. <artifactId>commons-collections</artifactId>
  115. <version>3.2.2</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>commons-lang</groupId>
  119. <artifactId>commons-lang</artifactId>
  120. <version>2.3</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>commons-io</groupId>
  124. <artifactId>commons-io</artifactId>
  125. <version>2.4</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>commons-dbcp</groupId>
  129. <artifactId>commons-dbcp</artifactId>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.hsqldb</groupId>
  133. <artifactId>hsqldb</artifactId>
  134. </dependency>
  135. <dependency>
  136. <groupId>javax.servlet</groupId>
  137. <artifactId>javax.servlet-api</artifactId>
  138. <scope>provided</scope>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.activemq</groupId>
  142. <artifactId>activemq-spring</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.apache.xbean</groupId>
  146. <artifactId>xbean-spring</artifactId>
  147. <version>3.4.3</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-starter-test</artifactId>
  152. <scope>test</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>org.assertj</groupId>
  156. <artifactId>assertj-core</artifactId>
  157. <scope>test</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.seleniumhq.selenium</groupId>
  161. <artifactId>selenium-java</artifactId>
  162. <scope>test</scope>
  163. </dependency>
  164. </dependencies>
  165. <reporting>
  166. <plugins>
  167. <!-- Javadoc -->
  168. <plugin>
  169. <artifactId>maven-javadoc-plugin</artifactId>
  170. </plugin>
  171. <!-- Source code cross reference -->
  172. <plugin>
  173. <artifactId>maven-jxr-plugin</artifactId>
  174. </plugin>
  175. <!-- Test report -->
  176. <plugin>
  177. <artifactId>maven-surefire-report-plugin</artifactId>
  178. </plugin>
  179. <!-- Test coverage -->
  180. <plugin>
  181. <groupId>org.codehaus.mojo</groupId>
  182. <artifactId>cobertura-maven-plugin</artifactId>
  183. </plugin>
  184. <!-- CheckStyle report -->
  185. <plugin>
  186. <artifactId>maven-checkstyle-plugin</artifactId>
  187. <configuration>
  188. <configLocation>src/main/config/checkstyle.xml</configLocation>
  189. <!-- Java source code generated from WSDL -->
  190. <excludes>**/com/aggregator/**/*</excludes>
  191. </configuration>
  192. </plugin>
  193. </plugins>
  194. </reporting>
  195. </project>