1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Copyright (c) 2019 Of Him Code Technology Studio
- Jpom is licensed under Mulan PSL v2.
- You can use this software according to the terms and conditions of the Mulan PSL v2.
- You may obtain a copy of Mulan PSL v2 at:
- http://license.coscl.org.cn/MulanPSL2
- THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
- See the Mulan PSL v2 for more details.
- -->
- <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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.dromara.jpom.storage-module</groupId>
- <artifactId>jpom-storage-module-parent</artifactId>
- <version>2.11.12.1</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>storage-module-dameng</artifactId>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.dromara.jpom.storage-module</groupId>
- <artifactId>storage-module-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>com.dameng</groupId>
- <artifactId>Dm8JdbcDriver18</artifactId>
- <version>8.1.1.49</version>
- </dependency>
- <dependency>
- <groupId>org.dromara.jpom</groupId>
- <artifactId>common</artifactId>
- <scope>provided</scope>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </project>
|