pom.xml 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>se.citerus</groupId>
  7. <artifactId>dddsample</artifactId>
  8. <packaging>war</packaging>
  9. <name>DDDSample</name>
  10. <version>1.0-SNAPSHOT</version>
  11. <description>This application shows a few key concepts of
  12. Domain Driven Design implemented in Enterprise Java.
  13. </description>
  14. <url>http://dddsample.sourceforge.net</url>
  15. <distributionManagement>
  16. <site>
  17. <id>sf</id>
  18. <url>scp://shell.sf.net/home/groups/d/dd/dddsample/htdocs</url>
  19. </site>
  20. </distributionManagement>
  21. <ciManagement/>
  22. <repositories>
  23. <repository>
  24. <id>maven2-repository.dev.java.net</id>
  25. <name>Java.net Repository for Maven</name>
  26. <url>http://download.java.net/maven/2/</url>
  27. <layout>default</layout>
  28. </repository>
  29. <repository>
  30. <id>maven-repository.dev.java.net</id>
  31. <name>Java.net Repository for Maven 1</name>
  32. <url>http://download.java.net/maven/1/</url>
  33. <layout>legacy</layout>
  34. </repository>
  35. </repositories>
  36. <pluginRepositories>
  37. <pluginRepository>
  38. <id>maven2-repository.dev.java.net</id>
  39. <name>Java.net Repository for Maven</name>
  40. <url>http://download.java.net/maven/2/</url>
  41. </pluginRepository>
  42. </pluginRepositories>
  43. <developers>
  44. <developer>
  45. <id>peba</id>
  46. <name>Peter Backlund</name>
  47. <email>peter.backlund@citerus.se</email>
  48. <organization>Citerus</organization>
  49. <organizationUrl>http://www.citerus.se</organizationUrl>
  50. <timezone>+1</timezone>
  51. </developer>
  52. <developer>
  53. <id>patrikfr</id>
  54. <name>Patrik Fredriksson</name>
  55. <email>patrikfr@users.sourceforge.net</email>
  56. <organization>Citerus</organization>
  57. <organizationUrl>http://www.citerus.se</organizationUrl>
  58. <timezone>+1</timezone>
  59. </developer>
  60. <developer>
  61. <id>jeham</id>
  62. <name>Jesper Hammarback</name>
  63. <email>jeham@users.sourceforge.net</email>
  64. <organization>Citerus</organization>
  65. <organizationUrl>http://www.citerus.se</organizationUrl>
  66. <timezone>+1</timezone>
  67. </developer>
  68. <developer>
  69. <id>jorgen_falk</id>
  70. <name>Jorgen Falk</name>
  71. <email>jorgen.falk@citerus.se</email>
  72. <organization>Citerus</organization>
  73. <organizationUrl>http://www.citerus.se</organizationUrl>
  74. <timezone>+1</timezone>
  75. </developer>
  76. </developers>
  77. <licenses>
  78. <license>
  79. <name>MIT</name>
  80. <url>http://www.opensource.org/licenses/mit-license.php</url>
  81. <distribution>repo</distribution>
  82. </license>
  83. </licenses>
  84. <scm>
  85. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  86. <url>http://ddd.sventon.org</url>
  87. </scm>
  88. <build>
  89. <plugins>
  90. <!-- Compiler -->
  91. <plugin>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <configuration>
  94. <source>1.5</source>
  95. <target>1.5</target>
  96. <encoding>UTF-8</encoding>
  97. </configuration>
  98. </plugin>
  99. <!-- Jetty servlet container: http://jetty.mortbay.com/maven-plugin -->
  100. <plugin>
  101. <groupId>org.mortbay.jetty</groupId>
  102. <artifactId>maven-jetty-plugin</artifactId>
  103. <configuration>
  104. <!--scanIntervalSeconds>10</scanIntervalSeconds-->
  105. </configuration>
  106. </plugin>
  107. <!-- JAX-WS generation plugin -->
  108. <plugin>
  109. <groupId>org.codehaus.mojo</groupId>
  110. <artifactId>jaxws-maven-plugin</artifactId>
  111. <executions>
  112. <execution>
  113. <goals>
  114. <goal>wsgen</goal>
  115. </goals>
  116. </execution>
  117. </executions>
  118. <configuration>
  119. <sei>se.citerus.dddsample.ws.HandlingEventServiceEndpointImpl</sei>
  120. <genWsdl>true</genWsdl>
  121. <verbose>true</verbose>
  122. </configuration>
  123. </plugin>
  124. <!-- Jar plugin for generation of WS Client classes -->
  125. <plugin>
  126. <groupId>org.apache.maven.plugins</groupId>
  127. <artifactId>maven-jar-plugin</artifactId>
  128. <executions>
  129. <execution>
  130. <phase>package</phase>
  131. <goals>
  132. <goal>jar</goal>
  133. </goals>
  134. <configuration>
  135. <classifier>ws-client</classifier>
  136. <includes>
  137. <include>**/se/citerus/dddsample/ws/**</include>
  138. </includes>
  139. </configuration>
  140. </execution>
  141. </executions>
  142. </plugin>
  143. </plugins>
  144. </build>
  145. <dependencies>
  146. <dependency>
  147. <groupId>junit</groupId>
  148. <artifactId>junit</artifactId>
  149. <version>4.4</version>
  150. <scope>test</scope>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework</groupId>
  154. <artifactId>spring-webmvc</artifactId>
  155. <version>2.0.8</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.springframework</groupId>
  159. <artifactId>spring-hibernate3</artifactId>
  160. <!-- -orm in 2.5.x -->
  161. <version>2.0.8</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.springframework</groupId>
  165. <artifactId>spring-jdbc</artifactId>
  166. <version>2.0.8</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.springframework</groupId>
  170. <artifactId>spring-aop</artifactId>
  171. <version>2.0.8</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.springframework</groupId>
  175. <artifactId>spring-mock</artifactId>
  176. <!-- -test in 2.5.x -->
  177. <version>2.0.8</version>
  178. <scope>test</scope>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.hibernate</groupId>
  182. <artifactId>hibernate</artifactId>
  183. <version>3.2.5.ga</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>org.hibernate</groupId>
  187. <artifactId>hibernate-annotations</artifactId>
  188. <version>3.3.0.ga</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.hibernate</groupId>
  192. <artifactId>hibernate-commons-annotations</artifactId>
  193. <version>3.3.0.ga</version>
  194. </dependency>
  195. <dependency>
  196. <groupId>commons-lang</groupId>
  197. <artifactId>commons-lang</artifactId>
  198. <version>2.3</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>commons-logging</groupId>
  202. <artifactId>commons-logging</artifactId>
  203. <version>1.1</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>commons-dbcp</groupId>
  207. <artifactId>commons-dbcp</artifactId>
  208. <version>1.2.2</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>hsqldb</groupId>
  212. <artifactId>hsqldb</artifactId>
  213. <version>1.8.0.7</version>
  214. </dependency>
  215. <dependency>
  216. <groupId>javax.servlet</groupId>
  217. <artifactId>servlet-api</artifactId>
  218. <version>2.5</version>
  219. <scope>provided</scope>
  220. </dependency>
  221. <dependency>
  222. <groupId>taglibs</groupId>
  223. <artifactId>standard</artifactId>
  224. <version>1.1.2</version>
  225. </dependency>
  226. <dependency>
  227. <groupId>javax.servlet</groupId>
  228. <artifactId>jstl</artifactId>
  229. <version>1.1.2</version>
  230. </dependency>
  231. <dependency>
  232. <groupId>opensymphony</groupId>
  233. <artifactId>sitemesh</artifactId>
  234. <version>2.3</version>
  235. <scope>runtime</scope>
  236. </dependency>
  237. <dependency>
  238. <groupId>org.easymock</groupId>
  239. <artifactId>easymock</artifactId>
  240. <version>2.3</version>
  241. <scope>test</scope>
  242. </dependency>
  243. <dependency>
  244. <groupId>org.jvnet.jax-ws-commons.spring</groupId>
  245. <artifactId>jaxws-spring</artifactId>
  246. <version>1.8</version>
  247. <exclusions>
  248. <exclusion>
  249. <groupId>org.springframework</groupId>
  250. <artifactId>spring</artifactId>
  251. </exclusion>
  252. </exclusions>
  253. </dependency>
  254. <dependency>
  255. <groupId>com.sun.xml.ws</groupId>
  256. <artifactId>jaxws-rt</artifactId>
  257. <version>2.1.3</version>
  258. </dependency>
  259. <dependency>
  260. <groupId>com.sun.istack</groupId>
  261. <artifactId>istack-commons-runtime</artifactId>
  262. <version>1.0</version>
  263. <scope>runtime</scope>
  264. </dependency>
  265. </dependencies>
  266. <reporting>
  267. <plugins>
  268. <!-- Javadoc -->
  269. <plugin>
  270. <groupId>org.apache.maven.plugins</groupId>
  271. <artifactId>maven-javadoc-plugin</artifactId>
  272. </plugin>
  273. <!-- Source code cross reference -->
  274. <plugin>
  275. <groupId>org.apache.maven.plugins</groupId>
  276. <artifactId>maven-jxr-plugin</artifactId>
  277. </plugin>
  278. <!-- Test report -->
  279. <plugin>
  280. <groupId>org.apache.maven.plugins</groupId>
  281. <artifactId>maven-surefire-report-plugin</artifactId>
  282. </plugin>
  283. </plugins>
  284. </reporting>
  285. </project>