pom.xml 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>register-app</artifactId>
  8. <name>register-app</name>
  9. <version>1.0-SNAPSHOT</version>
  10. <url>http://maven.apache.org</url>
  11. <repositories>
  12. <repository>
  13. <id>maven2-repository.dev.java.net</id>
  14. <name>Java.net Repository for Maven</name>
  15. <url>http://download.java.net/maven/2/</url>
  16. <layout>default</layout>
  17. </repository>
  18. </repositories>
  19. <pluginRepositories>
  20. <pluginRepository>
  21. <id>maven2-repository.dev.java.net</id>
  22. <name>Java.net Repository for Maven</name>
  23. <url>http://download.java.net/maven/2/</url>
  24. </pluginRepository>
  25. </pluginRepositories>
  26. <build>
  27. <plugins>
  28. <!-- Compiler -->
  29. <plugin>
  30. <artifactId>maven-compiler-plugin</artifactId>
  31. <configuration>
  32. <source>1.5</source>
  33. <target>1.5</target>
  34. <encoding>UTF-8</encoding>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39. <dependencies>
  40. <dependency>
  41. <groupId>junit</groupId>
  42. <artifactId>junit</artifactId>
  43. <version>3.8.1</version>
  44. <scope>test</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.springframework</groupId>
  48. <artifactId>spring</artifactId>
  49. <version>2.5</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.jgoodies</groupId>
  53. <artifactId>forms</artifactId>
  54. <version>1.0.7</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.jgoodies</groupId>
  58. <artifactId>looks</artifactId>
  59. <version>2.1.2</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.sun.xml.ws</groupId>
  63. <artifactId>jaxws-rt</artifactId>
  64. <version>2.1.3</version>
  65. </dependency>
  66. </dependencies>
  67. </project>