12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <groupId>com.onemap</groupId>
- <artifactId>onemap</artifactId>
- <version>3.6.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <modules>
- <module>onemap-system</module>
- <module>onemap-file</module>
- <module>onemap-apply</module>
- <module>onemap-analyse</module>
- <module>onemap-spatial</module>
- <module>onemap-model</module>
- </modules>
- <dependencies>
-
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
-
- </dependency>
-
- <dependency>
- <groupId>com.oracle.database.jdbc</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.4</version>
- </dependency>
- <dependency>
- <groupId>com.onemap</groupId>
- <artifactId>onemap-common-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.18.24</version>
- </dependency>
-
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${spring-boot.mybatis-plus}</version>
- </dependency>
- <dependency>
- <groupId>com.onemap</groupId>
- <artifactId>onemap-common-security</artifactId>
- </dependency>
- <dependency>
- <groupId>com.onemap</groupId>
- <artifactId>onemap-common-swagger</artifactId>
- </dependency>
- <dependency>
- <groupId>com.onemap</groupId>
- <artifactId>onemap-common-datascope</artifactId>
- </dependency>
- </dependencies>
- <artifactId>onemap-modules</artifactId>
- <packaging>pom</packaging>
- <description>
- onemap-modules业务模块
- </description>
- </project>
|