pom.xml 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project>
  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.0-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://sourceforge.net/projects/dddsample/</url>
  13. <ciManagement />
  14. <developers>
  15. <developer>
  16. <id>peba</id>
  17. <name>Peter Backlund</name>
  18. <email>peter.backlund@citerus.se</email>
  19. <organization>Citerus</organization>
  20. <organizationUrl>http://www.citerus.se</organizationUrl>
  21. <timezone>CET</timezone>
  22. </developer>
  23. <developer>
  24. <id>patrikfr</id>
  25. <name>Patrik Fredriksson</name>
  26. <email>patrikfr@users.sourceforge.net</email>
  27. <organization>Citerus</organization>
  28. <organizationUrl>http://www.citerus.se</organizationUrl>
  29. <timezone>CET</timezone>
  30. </developer>
  31. <developer>
  32. <id>jeham</id>
  33. <name>Jesper Hammarback</name>
  34. <email>jeham@users.sourceforge.net</email>
  35. <organization>Citerus</organization>
  36. <organizationUrl>http://www.citerus.se</organizationUrl>
  37. <timezone>CET</timezone>
  38. </developer>
  39. <developer>
  40. <id>jorgen_falk</id>
  41. <name>Jorgen Falk</name>
  42. <email>jorgen.falk@citerus.se</email>
  43. <organization>Citerus</organization>
  44. <organizationUrl>http://www.citerus.se</organizationUrl>
  45. <timezone>GMT+1</timezone>
  46. </developer>
  47. </developers>
  48. <licenses>
  49. <license>
  50. <name>MIT</name>
  51. </license>
  52. </licenses>
  53. <scm>
  54. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  55. <url>http://dddsample.svn.sourceforge.net/viewvc/dddsample/</url>
  56. </scm>
  57. <build>
  58. <plugins>
  59. <plugin>
  60. <artifactId>maven-compiler-plugin</artifactId>
  61. <configuration>
  62. <source>1.5</source>
  63. <target>1.5</target>
  64. <encoding>UTF-8</encoding>
  65. </configuration>
  66. </plugin>
  67. </plugins>
  68. </build>
  69. <dependencies>
  70. <dependency>
  71. <groupId>junit</groupId>
  72. <artifactId>junit</artifactId>
  73. <version>4.4</version>
  74. <scope>test</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework</groupId>
  78. <artifactId>spring</artifactId>
  79. <version>2.5</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-webmvc</artifactId>
  84. <version>2.5</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.hibernate</groupId>
  88. <artifactId>hibernate</artifactId>
  89. <version>3.2.5.ga</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>commons-lang</groupId>
  93. <artifactId>commons-lang</artifactId>
  94. <version>20030203.000129</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>hsqldb</groupId>
  98. <artifactId>hsqldb</artifactId>
  99. <version>1.8.0.7</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.servlet</groupId>
  103. <artifactId>servlet-api</artifactId>
  104. <version>2.5</version>
  105. <scope>provided</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>taglibs</groupId>
  109. <artifactId>standard</artifactId>
  110. <version>1.1.2</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>javax.servlet</groupId>
  114. <artifactId>jstl</artifactId>
  115. <version>1.1.2</version>
  116. </dependency>
  117. </dependencies>
  118. </project>