123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  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. <packaging>war</packaging>
  7. <name>DDDSample</name>
  8. <version>1.2-SNAPSHOT</version>
  9. <description>This application shows a few key concepts of
  10. Domain Driven Design implemented in Enterprise Java.
  11. </description>
  12. <url>http://dddsample.sourceforge.net</url>
  13. <distributionManagement>
  14. <site>
  15. <id>sf</id>
  16. <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs/preview</url>
  17. </site>
  18. </distributionManagement>
  19. <ciManagement/>
  20. <developers>
  21. <developer>
  22. <id>eric_evans</id>
  23. <name>Eric Evans</name>
  24. <organization>Domain Language, Inc.</organization>
  25. <organizationUrl>http://www.domainlanguage.com</organizationUrl>
  26. <timezone>-8</timezone>
  27. </developer>
  28. <developer>
  29. <id>peba</id>
  30. <name>Peter Backlund</name>
  31. <organization>Citerus</organization>
  32. <organizationUrl>http://www.citerus.se</organizationUrl>
  33. <timezone>+1</timezone>
  34. </developer>
  35. <developer>
  36. <id>patrikfr</id>
  37. <name>Patrik Fredriksson</name>
  38. <organization>Citerus</organization>
  39. <organizationUrl>http://www.citerus.se</organizationUrl>
  40. <timezone>+1</timezone>
  41. </developer>
  42. <developer>
  43. <id>jeham</id>
  44. <name>Jesper Hammarback</name>
  45. <organization>Citerus</organization>
  46. <organizationUrl>http://www.citerus.se</organizationUrl>
  47. <timezone>+1</timezone>
  48. </developer>
  49. <developer>
  50. <id>jorgen_falk</id>
  51. <name>Jorgen Falk</name>
  52. <organization>Citerus</organization>
  53. <organizationUrl>http://www.citerus.se</organizationUrl>
  54. <timezone>+1</timezone>
  55. </developer>
  56. </developers>
  57. <licenses>
  58. <license>
  59. <name>MIT</name>
  60. <url>http://www.opensource.org/licenses/mit-license.php</url>
  61. <distribution>repo</distribution>
  62. </license>
  63. </licenses>
  64. <scm>
  65. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  66. <url>http://ddd.sventon.org</url>
  67. </scm>
  68. <properties>
  69. <spring.version>2.5.6</spring.version>
  70. <cxf.version>2.1.3</cxf.version>
  71. </properties>
  72. <build>
  73. <plugins>
  74. <!-- Compiler -->
  75. <plugin>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <configuration>
  78. <source>1.6</source>
  79. <target>1.6</target>
  80. <encoding>UTF-8</encoding>
  81. </configuration>
  82. </plugin>
  83. <!-- Jetty plugin -->
  84. <plugin>
  85. <groupId>org.mortbay.jetty</groupId>
  86. <artifactId>maven-jetty-plugin</artifactId>
  87. </plugin>
  88. <plugin>
  89. <artifactId>maven-jar-plugin</artifactId>
  90. <executions>
  91. <!-- Package booking service facade classes in separate jar -->
  92. <execution>
  93. <id>package-booking-facade</id>
  94. <phase>package</phase>
  95. <goals>
  96. <goal>jar</goal>
  97. </goals>
  98. <configuration>
  99. <classifier>booking-facade</classifier>
  100. <includes>
  101. <include>**/se/citerus/dddsample/interfaces/booking/facade/*.class</include>
  102. <include>**/se/citerus/dddsample/interfaces/booking/facade/dto/*.class</include>
  103. </includes>
  104. <archive>
  105. <addMavenDescriptor>false</addMavenDescriptor>
  106. </archive>
  107. </configuration>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. <!-- Assembly -->
  112. <plugin>
  113. <artifactId>maven-assembly-plugin</artifactId>
  114. <configuration>
  115. <descriptorRefs>
  116. <descriptorRef>src</descriptorRef>
  117. </descriptorRefs>
  118. </configuration>
  119. </plugin>
  120. </plugins>
  121. </build>
  122. <dependencies>
  123. <dependency>
  124. <groupId>junit</groupId>
  125. <artifactId>junit</artifactId>
  126. <version>4.4</version>
  127. <scope>test</scope>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-webmvc</artifactId>
  132. <version>${spring.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-web</artifactId>
  137. <version>${spring.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework</groupId>
  141. <artifactId>spring</artifactId>
  142. <version>${spring.version}</version>
  143. <exclusions>
  144. <exclusion>
  145. <groupId>commons-logging</groupId>
  146. <artifactId>commons-logging</artifactId>
  147. </exclusion>
  148. </exclusions>
  149. </dependency>
  150. <dependency>
  151. <groupId>org.springframework</groupId>
  152. <artifactId>spring-test</artifactId>
  153. <version>${spring.version}</version>
  154. <scope>test</scope>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.hibernate</groupId>
  158. <artifactId>hibernate-core</artifactId>
  159. <version>3.3.1.GA</version>
  160. <!-- God, what is it with Java and logging frameworks... http://forum.hibernate.org/viewtopic.php?p=2401380 -->
  161. <exclusions>
  162. <exclusion>
  163. <groupId>org.slf4j</groupId>
  164. <artifactId>slf4j-api</artifactId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.slf4j</groupId>
  170. <artifactId>slf4j-log4j12</artifactId>
  171. <version>1.5.6</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.slf4j</groupId>
  175. <artifactId>jcl-over-slf4j</artifactId>
  176. <version>1.5.6</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>org.slf4j</groupId>
  180. <artifactId>slf4j-api</artifactId>
  181. <version>1.5.6</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>javassist</groupId>
  185. <artifactId>javassist</artifactId>
  186. <version>3.8.0.GA</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.hibernate</groupId>
  190. <artifactId>hibernate-annotations</artifactId>
  191. <version>3.4.0.GA</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>commons-lang</groupId>
  195. <artifactId>commons-lang</artifactId>
  196. <version>2.3</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>commons-io</groupId>
  200. <artifactId>commons-io</artifactId>
  201. <version>1.3.1</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>commons-dbcp</groupId>
  205. <artifactId>commons-dbcp</artifactId>
  206. <version>1.2.2</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>hsqldb</groupId>
  210. <artifactId>hsqldb</artifactId>
  211. <version>1.8.0.7</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>javax.servlet</groupId>
  215. <artifactId>servlet-api</artifactId>
  216. <version>2.5</version>
  217. <scope>provided</scope>
  218. </dependency>
  219. <dependency>
  220. <groupId>taglibs</groupId>
  221. <artifactId>standard</artifactId>
  222. <version>1.1.2</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>javax.servlet</groupId>
  226. <artifactId>jstl</artifactId>
  227. <version>1.1.2</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>opensymphony</groupId>
  231. <artifactId>sitemesh</artifactId>
  232. <version>2.3</version>
  233. <scope>runtime</scope>
  234. </dependency>
  235. <dependency>
  236. <groupId>org.apache.activemq</groupId>
  237. <artifactId>activemq-core</artifactId>
  238. <version>5.2.0</version>
  239. <exclusions>
  240. <exclusion>
  241. <groupId>commons-logging</groupId>
  242. <artifactId>commons-logging-api</artifactId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.apache.xbean</groupId>
  248. <artifactId>xbean-spring</artifactId>
  249. <version>3.4.3</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>org.easymock</groupId>
  253. <artifactId>easymock</artifactId>
  254. <version>2.3</version>
  255. <scope>test</scope>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.cxf</groupId>
  259. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  260. <version>${cxf.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>org.apache.cxf</groupId>
  264. <artifactId>cxf-rt-transports-http</artifactId>
  265. <version>${cxf.version}</version>
  266. </dependency>
  267. </dependencies>
  268. <reporting>
  269. <plugins>
  270. <!-- Javadoc -->
  271. <plugin>
  272. <artifactId>maven-javadoc-plugin</artifactId>
  273. </plugin>
  274. <!-- Source code cross reference -->
  275. <plugin>
  276. <artifactId>maven-jxr-plugin</artifactId>
  277. </plugin>
  278. <!-- Test report -->
  279. <plugin>
  280. <artifactId>maven-surefire-report-plugin</artifactId>
  281. </plugin>
  282. <!-- Test coverage -->
  283. <plugin>
  284. <groupId>org.codehaus.mojo</groupId>
  285. <artifactId>cobertura-maven-plugin</artifactId>
  286. </plugin>
  287. <!-- CheckStyle report -->
  288. <plugin>
  289. <artifactId>maven-checkstyle-plugin</artifactId>
  290. <configuration>
  291. <configLocation>src/main/config/checkstyle.xml</configLocation>
  292. <!-- Java source code generated from WSDL -->
  293. <excludes>**/com/aggregator/**/*</excludes>
  294. </configuration>
  295. </plugin>
  296. </plugins>
  297. </reporting>
  298. </project>