1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>se.citerus</groupId>
  4. <artifactId>register-app</artifactId>
  5. <name>register-app</name>
  6. <version>1.1-SNAPSHOT</version>
  7. <url>http://dddsample.sf.net</url>
  8. <scm>
  9. <developerConnection>scm:svn:https://dddsample.svn.sourceforge.net/svnroot/dddsample</developerConnection>
  10. </scm>
  11. <build>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.6</source>
  17. <target>1.6</target>
  18. <encoding>UTF-8</encoding>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <artifactId>maven-jar-plugin</artifactId>
  23. <configuration>
  24. <archive>
  25. <manifest>
  26. <mainClass>se.citerus.App</mainClass>
  27. <addClasspath>true</addClasspath>
  28. <classpathPrefix>lib</classpathPrefix>
  29. </manifest>
  30. </archive>
  31. </configuration>
  32. </plugin>
  33. <plugin>
  34. <artifactId>maven-assembly-plugin</artifactId>
  35. <configuration>
  36. <descriptors>
  37. <descriptor>assembly.xml</descriptor>
  38. </descriptors>
  39. <finalName>IncidentLoggingApplication</finalName>
  40. </configuration>
  41. </plugin>
  42. </plugins>
  43. </build>
  44. <repositories>
  45. <repository>
  46. <id>maven2-repository.dev.java.net</id>
  47. <name>Java.net Repository for Maven</name>
  48. <url>http://download.java.net/maven/2/</url>
  49. </repository>
  50. </repositories>
  51. <pluginRepositories>
  52. <pluginRepository>
  53. <id>maven2-repository.dev.java.net</id>
  54. <name>Java.net Repository for Maven</name>
  55. <url>http://download.java.net/maven/2/</url>
  56. </pluginRepository>
  57. </pluginRepositories>
  58. <dependencies>
  59. <dependency>
  60. <groupId>junit</groupId>
  61. <artifactId>junit</artifactId>
  62. <version>3.8.1</version>
  63. <scope>test</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework</groupId>
  67. <artifactId>spring-context</artifactId>
  68. <version>2.5.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-web</artifactId>
  73. <version>2.5.6</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework</groupId>
  77. <artifactId>spring-aop</artifactId>
  78. <version>2.5.6</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>com.jgoodies</groupId>
  82. <artifactId>forms</artifactId>
  83. <version>1.0.7</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.jgoodies</groupId>
  87. <artifactId>looks</artifactId>
  88. <version>2.1.2</version>
  89. </dependency>
  90. </dependencies>
  91. </project>