pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>hsweb-framework</artifactId>
  7. <groupId>org.hsweb</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>hsweb-web-controller</artifactId>
  12. <properties>
  13. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  14. <commons.codec.version>1.9</commons.codec.version>
  15. <commons.net.version>3.3</commons.net.version>
  16. <commons.logging.version>1.1.3</commons.logging.version>
  17. <commons.collections.version>3.2.1</commons.collections.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.hsweb</groupId>
  22. <artifactId>hsweb-web-service-interface</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.hsweb</groupId>
  26. <artifactId>hsweb-web-core</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>commons-fileupload</groupId>
  30. <artifactId>commons-fileupload</artifactId>
  31. <version>${commons.fileupload.version}</version>
  32. </dependency>
  33. </dependencies>
  34. </project>