12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>se.citerus</groupId>
  6. <artifactId>dddsample</artifactId>
  7. <packaging>war</packaging>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>DDDSample</name>
  10. <description>
  11. This application shows a few key concepts of
  12. Domain Driven Design implemented in Enterprise Java.
  13. </description>
  14. <url>http://sourceforge.net/projects/dddsample/</url>
  15. <ciManagement/>
  16. <scm>
  17. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  18. <url>http://dddsample.svn.sourceforge.net/viewvc/dddsample/</url>
  19. </scm>
  20. <licenses>
  21. <license>
  22. <name>MIT</name>
  23. </license>
  24. </licenses>
  25. <developers>
  26. <developer>
  27. <id>peba</id>
  28. <name>Peter Backlund</name>
  29. <organization>Citerus</organization>
  30. <organizationUrl>http://www.citerus.se</organizationUrl>
  31. <email>peter.backlund@citerus.se</email>
  32. <timezone>CET</timezone>
  33. </developer>
  34. </developers>
  35. <dependencies>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <version>4.4</version>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-compiler-plugin</artifactId>
  48. <configuration>
  49. <source>1.5</source>
  50. <target>1.5</target>
  51. <encoding>UTF-8</encoding>
  52. </configuration>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>