pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>net.paoding</groupId>
  7. <artifactId>root</artifactId>
  8. <version>1.3-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <parent>
  11. <groupId>com.wzzx</groupId>
  12. <artifactId>wzzx-root-pom</artifactId>
  13. <version>3.0.0-SNAPSHOT</version>
  14. </parent>
  15. <modules>
  16. <module>rose</module>
  17. <module>rose-context</module>
  18. <module>rose-jade</module>
  19. <module>rose-pipe</module>
  20. <module>rose-velocity</module>
  21. </modules>
  22. <properties>
  23. <spring.boot.version>2.2.1.RELEASE</spring.boot.version>
  24. <paoding.version>1.3-SNAPSHOT</paoding.version>
  25. <commons-collections.version>3.2.1</commons-collections.version>
  26. <commons-logging.version>1.1.1</commons-logging.version>
  27. <commons-fileupload.version>1.2.2</commons-fileupload.version>
  28. <velocity-tools-view.version>3.1</velocity-tools-view.version>
  29. <json-rpc.version>1.0</json-rpc.version>
  30. <jsp-api.version>2.0</jsp-api.version>
  31. <commons-lang.version>2.6</commons-lang.version>
  32. <fastjson.version>1.2.28</fastjson.version>
  33. <commons-jexl.version>1.1</commons-jexl.version>
  34. </properties>
  35. <dependencyManagement>
  36. <dependencies>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-parent</artifactId>
  40. <version>${spring.boot.version}</version>
  41. <type>pom</type>
  42. <scope>import</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>commons-collections</groupId>
  46. <artifactId>commons-collections</artifactId>
  47. <version>${commons-collections.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.paoding</groupId>
  51. <artifactId>rose-velocity</artifactId>
  52. <version>${paoding.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>commons-logging</groupId>
  56. <artifactId>commons-logging</artifactId>
  57. <version>${commons-logging.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>commons-fileupload</groupId>
  61. <artifactId>commons-fileupload</artifactId>
  62. <version>${commons-fileupload.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.velocity.tools</groupId>
  66. <artifactId>velocity-tools-view</artifactId>
  67. <version>${velocity-tools-view.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.metaparadigm</groupId>
  71. <artifactId>json-rpc</artifactId>
  72. <version>${json-rpc.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>commons-jexl</groupId>
  76. <artifactId>commons-jexl</artifactId>
  77. <version>${commons-jexl.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.servlet</groupId>
  81. <artifactId>jsp-api</artifactId>
  82. <version>${jsp-api.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>commons-lang</groupId>
  86. <artifactId>commons-lang</artifactId>
  87. <version>${commons-lang.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba</groupId>
  91. <artifactId>fastjson</artifactId>
  92. <version>${fastjson.version}</version>
  93. </dependency>
  94. </dependencies>
  95. </dependencyManagement>
  96. </project>