123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <?xml version="1.0" encoding="UTF-8"?><project>
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>se.citerus</groupId>
  4. <artifactId>dddsample</artifactId>
  5. <packaging>war</packaging>
  6. <name>DDDSample</name>
  7. <version>1.0-SNAPSHOT</version>
  8. <description>This application shows a few key concepts of
  9. Domain Driven Design implemented in Enterprise Java.
  10. </description>
  11. <url>http://sourceforge.net/projects/dddsample/</url>
  12. <ciManagement/>
  13. <repositories>
  14. <repository>
  15. <id>maven2-repository.dev.java.net</id>
  16. <name>Java.net Repository for Maven</name>
  17. <url>http://download.java.net/maven/2/</url>
  18. </repository>
  19. </repositories>
  20. <developers>
  21. <developer>
  22. <id>peba</id>
  23. <name>Peter Backlund</name>
  24. <email>peter.backlund@citerus.se</email>
  25. <organization>Citerus</organization>
  26. <organizationUrl>http://www.citerus.se</organizationUrl>
  27. <timezone>GMT+1</timezone>
  28. </developer>
  29. <developer>
  30. <id>patrikfr</id>
  31. <name>Patrik Fredriksson</name>
  32. <email>patrikfr@users.sourceforge.net</email>
  33. <organization>Citerus</organization>
  34. <organizationUrl>http://www.citerus.se</organizationUrl>
  35. <timezone>GMT+1</timezone>
  36. </developer>
  37. <developer>
  38. <id>jeham</id>
  39. <name>Jesper Hammarback</name>
  40. <email>jeham@users.sourceforge.net</email>
  41. <organization>Citerus</organization>
  42. <organizationUrl>http://www.citerus.se</organizationUrl>
  43. <timezone>GMT+1</timezone>
  44. </developer>
  45. <developer>
  46. <id>jorgen_falk</id>
  47. <name>Jorgen Falk</name>
  48. <email>jorgen.falk@citerus.se</email>
  49. <organization>Citerus</organization>
  50. <organizationUrl>http://www.citerus.se</organizationUrl>
  51. <timezone>GMT+1</timezone>
  52. </developer>
  53. </developers>
  54. <licenses>
  55. <license>
  56. <name>MIT</name>
  57. <url>http://www.opensource.org/licenses/mit-license.php</url>
  58. <distribution>repo</distribution>
  59. </license>
  60. </licenses>
  61. <scm>
  62. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  63. <url>http://dddsample.svn.sourceforge.net/viewvc/dddsample/</url>
  64. </scm>
  65. <build>
  66. <plugins>
  67. <!-- Compiler -->
  68. <plugin>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <configuration>
  71. <source>1.5</source>
  72. <target>1.5</target>
  73. <encoding>UTF-8</encoding>
  74. </configuration>
  75. </plugin>
  76. <!-- Jetty servlet container: http://jetty.mortbay.com/maven-plugin -->
  77. <plugin>
  78. <groupId>org.mortbay.jetty</groupId>
  79. <artifactId>maven-jetty-plugin</artifactId>
  80. </plugin>
  81. </plugins>
  82. </build>
  83. <dependencies>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <version>4.4</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.springframework</groupId>
  92. <artifactId>spring</artifactId>
  93. <version>2.5</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework</groupId>
  97. <artifactId>spring-webmvc</artifactId>
  98. <version>2.5</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework</groupId>
  102. <artifactId>spring-test</artifactId>
  103. <version>2.5</version>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.hibernate</groupId>
  108. <artifactId>hibernate</artifactId>
  109. <version>3.2.5.ga</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-lang</groupId>
  113. <artifactId>commons-lang</artifactId>
  114. <version>2.3</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>commons-logging</groupId>
  118. <artifactId>commons-logging</artifactId>
  119. <version>1.1</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>hsqldb</groupId>
  123. <artifactId>hsqldb</artifactId>
  124. <version>1.8.0.7</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>javax.servlet</groupId>
  128. <artifactId>servlet-api</artifactId>
  129. <version>2.5</version>
  130. <scope>provided</scope>
  131. </dependency>
  132. <dependency>
  133. <groupId>taglibs</groupId>
  134. <artifactId>standard</artifactId>
  135. <version>1.1.2</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>javax.servlet</groupId>
  139. <artifactId>jstl</artifactId>
  140. <version>1.1.2</version>
  141. </dependency>
  142. <dependency>
  143. <groupId>org.easymock</groupId>
  144. <artifactId>easymock</artifactId>
  145. <version>2.3</version>
  146. <scope>test</scope>
  147. </dependency>
  148. </dependencies>
  149. </project>