| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>net.paoding</groupId>
- <artifactId>root</artifactId>
- <version>1.3-SNAPSHOT</version>
- <packaging>pom</packaging>
- <parent>
- <groupId>com.wzzx</groupId>
- <artifactId>wzzx-root-pom</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </parent>
- <modules>
- <module>rose</module>
- <module>rose-context</module>
- <module>rose-jade</module>
- <module>rose-pipe</module>
- <module>rose-velocity</module>
- </modules>
- <properties>
- <spring.boot.version>2.2.1.RELEASE</spring.boot.version>
- <paoding.version>1.3-SNAPSHOT</paoding.version>
- <commons-collections.version>3.2.1</commons-collections.version>
- <commons-logging.version>1.1.1</commons-logging.version>
- <commons-fileupload.version>1.2.2</commons-fileupload.version>
- <velocity-tools-view.version>3.1</velocity-tools-view.version>
- <json-rpc.version>1.0</json-rpc.version>
- <jsp-api.version>2.0</jsp-api.version>
- <commons-lang.version>2.6</commons-lang.version>
- <fastjson.version>1.2.28</fastjson.version>
- <commons-jexl.version>1.1</commons-jexl.version>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>${spring.boot.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>${commons-collections.version}</version>
- </dependency>
- <dependency>
- <groupId>net.paoding</groupId>
- <artifactId>rose-velocity</artifactId>
- <version>${paoding.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>${commons-logging.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>${commons-fileupload.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.velocity.tools</groupId>
- <artifactId>velocity-tools-view</artifactId>
- <version>${velocity-tools-view.version}</version>
- </dependency>
- <dependency>
- <groupId>com.metaparadigm</groupId>
- <artifactId>json-rpc</artifactId>
- <version>${json-rpc.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-jexl</groupId>
- <artifactId>commons-jexl</artifactId>
- <version>${commons-jexl.version}</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jsp-api</artifactId>
- <version>${jsp-api.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>${commons-lang.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>${fastjson.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|