123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  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. <slf4j.version>1.5.6</slf4j.version>
  72. </properties>
  73. <build>
  74. <defaultGoal>package</defaultGoal>
  75. <plugins>
  76. <!-- Compiler -->
  77. <plugin>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>1.6</source>
  81. <target>1.6</target>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. <!-- Jetty plugin -->
  86. <plugin>
  87. <groupId>org.mortbay.jetty</groupId>
  88. <artifactId>maven-jetty-plugin</artifactId>
  89. </plugin>
  90. <plugin>
  91. <artifactId>maven-jar-plugin</artifactId>
  92. <executions>
  93. <!-- Package booking service facade classes in separate jar -->
  94. <execution>
  95. <id>package-booking-facade</id>
  96. <phase>package</phase>
  97. <goals>
  98. <goal>jar</goal>
  99. </goals>
  100. <configuration>
  101. <classifier>booking-facade</classifier>
  102. <includes>
  103. <include>**/se/citerus/dddsample/interfaces/booking/facade/*.class</include>
  104. <include>**/se/citerus/dddsample/interfaces/booking/facade/dto/*.class</include>
  105. </includes>
  106. <archive>
  107. <addMavenDescriptor>false</addMavenDescriptor>
  108. </archive>
  109. </configuration>
  110. </execution>
  111. </executions>
  112. </plugin>
  113. <!-- Assembly -->
  114. <plugin>
  115. <artifactId>maven-assembly-plugin</artifactId>
  116. <configuration>
  117. <descriptorRefs>
  118. <descriptorRef>src</descriptorRef>
  119. </descriptorRefs>
  120. </configuration>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. <dependencies>
  125. <dependency>
  126. <groupId>junit</groupId>
  127. <artifactId>junit</artifactId>
  128. <version>4.4</version>
  129. <scope>test</scope>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-webmvc</artifactId>
  134. <version>${spring.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-web</artifactId>
  139. <version>${spring.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring</artifactId>
  144. <version>${spring.version}</version>
  145. <exclusions>
  146. <exclusion>
  147. <groupId>commons-logging</groupId>
  148. <artifactId>commons-logging</artifactId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework</groupId>
  154. <artifactId>spring-test</artifactId>
  155. <version>${spring.version}</version>
  156. <scope>test</scope>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.hibernate</groupId>
  160. <artifactId>hibernate-core</artifactId>
  161. <version>3.3.1.GA</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.slf4j</groupId>
  165. <artifactId>slf4j-log4j12</artifactId>
  166. <version>${slf4j.version}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.slf4j</groupId>
  170. <artifactId>jcl-over-slf4j</artifactId>
  171. <version>${slf4j.version}</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.slf4j</groupId>
  175. <artifactId>slf4j-api</artifactId>
  176. <version>${slf4j.version}</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>javassist</groupId>
  180. <artifactId>javassist</artifactId>
  181. <version>3.8.0.GA</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>org.hibernate</groupId>
  185. <artifactId>hibernate-annotations</artifactId>
  186. <version>3.4.0.GA</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>commons-lang</groupId>
  190. <artifactId>commons-lang</artifactId>
  191. <version>2.3</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>commons-io</groupId>
  195. <artifactId>commons-io</artifactId>
  196. <version>1.3.1</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>commons-dbcp</groupId>
  200. <artifactId>commons-dbcp</artifactId>
  201. <version>1.2.2</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>hsqldb</groupId>
  205. <artifactId>hsqldb</artifactId>
  206. <version>1.8.0.7</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>javax.servlet</groupId>
  210. <artifactId>servlet-api</artifactId>
  211. <version>2.5</version>
  212. <scope>provided</scope>
  213. </dependency>
  214. <dependency>
  215. <groupId>taglibs</groupId>
  216. <artifactId>standard</artifactId>
  217. <version>1.1.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>javax.servlet</groupId>
  221. <artifactId>jstl</artifactId>
  222. <version>1.1.2</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>opensymphony</groupId>
  226. <artifactId>sitemesh</artifactId>
  227. <version>2.3</version>
  228. <scope>runtime</scope>
  229. </dependency>
  230. <dependency>
  231. <groupId>org.apache.activemq</groupId>
  232. <artifactId>activemq-core</artifactId>
  233. <version>5.2.0</version>
  234. <exclusions>
  235. <exclusion>
  236. <groupId>commons-logging</groupId>
  237. <artifactId>commons-logging-api</artifactId>
  238. </exclusion>
  239. </exclusions>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.apache.xbean</groupId>
  243. <artifactId>xbean-spring</artifactId>
  244. <version>3.4.3</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.easymock</groupId>
  248. <artifactId>easymock</artifactId>
  249. <version>2.3</version>
  250. <scope>test</scope>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.apache.cxf</groupId>
  254. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  255. <version>${cxf.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.apache.cxf</groupId>
  259. <artifactId>cxf-rt-transports-http</artifactId>
  260. <version>${cxf.version}</version>
  261. </dependency>
  262. </dependencies>
  263. <reporting>
  264. <plugins>
  265. <!-- Javadoc -->
  266. <plugin>
  267. <artifactId>maven-javadoc-plugin</artifactId>
  268. </plugin>
  269. <!-- Source code cross reference -->
  270. <plugin>
  271. <artifactId>maven-jxr-plugin</artifactId>
  272. </plugin>
  273. <!-- Test report -->
  274. <plugin>
  275. <artifactId>maven-surefire-report-plugin</artifactId>
  276. </plugin>
  277. <!-- Test coverage -->
  278. <plugin>
  279. <groupId>org.codehaus.mojo</groupId>
  280. <artifactId>cobertura-maven-plugin</artifactId>
  281. </plugin>
  282. <!-- CheckStyle report -->
  283. <plugin>
  284. <artifactId>maven-checkstyle-plugin</artifactId>
  285. <configuration>
  286. <configLocation>src/main/config/checkstyle.xml</configLocation>
  287. <!-- Java source code generated from WSDL -->
  288. <excludes>**/com/aggregator/**/*</excludes>
  289. </configuration>
  290. </plugin>
  291. </plugins>
  292. </reporting>
  293. </project>