pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. <version>${parent.version}</version>
  13. <properties>
  14. <commons.fileupload.version>1.3.1</commons.fileupload.version>
  15. <commons.codec.version>1.9</commons.codec.version>
  16. <commons.net.version>3.3</commons.net.version>
  17. <commons.logging.version>1.1.3</commons.logging.version>
  18. <commons.collections.version>3.2.1</commons.collections.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.hsweb</groupId>
  23. <artifactId>hsweb-web-service-impl-common</artifactId>
  24. <version>${parent.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.hsweb</groupId>
  28. <artifactId>hsweb-web-core</artifactId>
  29. <version>${parent.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.hsweb</groupId>
  33. <artifactId>hsweb-web-service-interface</artifactId>
  34. <version>${parent.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. <version>${spring.boot.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-logging</artifactId>
  44. <version>${spring.boot.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>commons-fileupload</groupId>
  48. <artifactId>commons-fileupload</artifactId>
  49. <version>${commons.fileupload.version}</version>
  50. </dependency>
  51. </dependencies>
  52. </project>