123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. </repository>
  28. </repositories>
  29. <developers>
  30. <developer>
  31. <id>peba</id>
  32. <name>Peter Backlund</name>
  33. <email>peter.backlund@citerus.se</email>
  34. <organization>Citerus</organization>
  35. <organizationUrl>http://www.citerus.se</organizationUrl>
  36. <timezone>GMT+1</timezone>
  37. </developer>
  38. <developer>
  39. <id>patrikfr</id>
  40. <name>Patrik Fredriksson</name>
  41. <email>patrikfr@users.sourceforge.net</email>
  42. <organization>Citerus</organization>
  43. <organizationUrl>http://www.citerus.se</organizationUrl>
  44. <timezone>GMT+1</timezone>
  45. </developer>
  46. <developer>
  47. <id>jeham</id>
  48. <name>Jesper Hammarback</name>
  49. <email>jeham@users.sourceforge.net</email>
  50. <organization>Citerus</organization>
  51. <organizationUrl>http://www.citerus.se</organizationUrl>
  52. <timezone>GMT+1</timezone>
  53. </developer>
  54. <developer>
  55. <id>jorgen_falk</id>
  56. <name>Jorgen Falk</name>
  57. <email>jorgen.falk@citerus.se</email>
  58. <organization>Citerus</organization>
  59. <organizationUrl>http://www.citerus.se</organizationUrl>
  60. <timezone>GMT+1</timezone>
  61. </developer>
  62. </developers>
  63. <licenses>
  64. <license>
  65. <name>MIT</name>
  66. <url>http://www.opensource.org/licenses/mit-license.php</url>
  67. <distribution>repo</distribution>
  68. </license>
  69. </licenses>
  70. <scm>
  71. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  72. <url>http://dddsample.svn.sourceforge.net/viewvc/dddsample/</url>
  73. </scm>
  74. <build>
  75. <plugins>
  76. <!-- Compiler -->
  77. <plugin>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <configuration>
  80. <source>1.5</source>
  81. <target>1.5</target>
  82. <encoding>UTF-8</encoding>
  83. </configuration>
  84. </plugin>
  85. <!-- Jetty servlet container: http://jetty.mortbay.com/maven-plugin -->
  86. <plugin>
  87. <groupId>org.mortbay.jetty</groupId>
  88. <artifactId>maven-jetty-plugin</artifactId>
  89. <configuration>
  90. <!--scanIntervalSeconds>10</scanIntervalSeconds-->
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. <dependencies>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. <version>4.4</version>
  100. <scope>test</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework</groupId>
  104. <artifactId>spring</artifactId>
  105. <version>2.5</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.springframework</groupId>
  109. <artifactId>spring-webmvc</artifactId>
  110. <version>2.5</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-test</artifactId>
  115. <version>2.5</version>
  116. <scope>test</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.hibernate</groupId>
  120. <artifactId>hibernate</artifactId>
  121. <version>3.2.5.ga</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.hibernate</groupId>
  125. <artifactId>hibernate-annotations</artifactId>
  126. <version>3.3.0.ga</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.hibernate</groupId>
  130. <artifactId>hibernate-commons-annotations</artifactId>
  131. <version>3.3.0.ga</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>commons-lang</groupId>
  135. <artifactId>commons-lang</artifactId>
  136. <version>2.3</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>commons-logging</groupId>
  140. <artifactId>commons-logging</artifactId>
  141. <version>1.1</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>hsqldb</groupId>
  145. <artifactId>hsqldb</artifactId>
  146. <version>1.8.0.7</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>javax.servlet</groupId>
  150. <artifactId>servlet-api</artifactId>
  151. <version>2.5</version>
  152. <scope>provided</scope>
  153. </dependency>
  154. <dependency>
  155. <groupId>taglibs</groupId>
  156. <artifactId>standard</artifactId>
  157. <version>1.1.2</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>javax.servlet</groupId>
  161. <artifactId>jstl</artifactId>
  162. <version>1.1.2</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>opensymphony</groupId>
  166. <artifactId>sitemesh</artifactId>
  167. <version>2.3</version>
  168. <scope>runtime</scope>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.easymock</groupId>
  172. <artifactId>easymock</artifactId>
  173. <version>2.3</version>
  174. <scope>test</scope>
  175. </dependency>
  176. </dependencies>
  177. </project>