2018-01-10 23:39:55 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<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>
|
2018-06-11 20:21:04 +08:00
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-parent</artifactId>
|
2022-10-12 13:53:05 +08:00
|
|
|
<version>5.2.0-SNAPSHOT</version>
|
2018-06-11 20:21:04 +08:00
|
|
|
<relativePath>../../parent/pom.xml</relativePath>
|
|
|
|
|
</parent>
|
2018-01-10 23:39:55 +08:00
|
|
|
|
|
|
|
|
<artifactId>jeesite-module-core</artifactId>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>JeeSite Module Core</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
<inceptionYear>2013-Now</inceptionYear>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
2020-05-05 20:57:45 +08:00
|
|
|
<!-- MySQL -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
2020-03-10 23:22:19 +08:00
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2020-05-05 23:55:31 +08:00
|
|
|
<!-- Oracle 11g -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
2020-04-30 20:44:01 +08:00
|
|
|
<groupId>com.oracle</groupId>
|
|
|
|
|
<artifactId>ojdbc6</artifactId>
|
|
|
|
|
<version>11.2.0.3</version>
|
|
|
|
|
<scope>runtime</scope>
|
2020-05-05 23:55:31 +08:00
|
|
|
</dependency>
|
|
|
|
|
<!-- Oracle 12c
|
2020-05-05 20:57:45 +08:00
|
|
|
<dependency>
|
2020-03-10 23:22:19 +08:00
|
|
|
<groupId>com.oracle.ojdbc</groupId>
|
|
|
|
|
<artifactId>ojdbc8</artifactId>
|
2018-09-22 21:12:45 +08:00
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2020-04-30 20:44:01 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.ojdbc</groupId>
|
|
|
|
|
<artifactId>orai18n</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
2020-05-05 23:55:31 +08:00
|
|
|
</dependency> -->
|
|
|
|
|
<!-- SqlServer 2008 -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sourceforge.jtds</groupId>
|
|
|
|
|
<artifactId>jtds</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2020-04-30 20:44:01 +08:00
|
|
|
<!-- SqlServer 2012
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
<!-- PostgreSQL -->
|
2018-09-22 21:12:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
2021-12-03 21:35:11 +08:00
|
|
|
<!-- H2 DB
|
2020-05-05 23:55:31 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
2021-12-03 21:35:11 +08:00
|
|
|
</dependency> -->
|
2018-09-22 21:12:45 +08:00
|
|
|
|
|
|
|
|
<!-- Common -->
|
2018-04-17 20:55:22 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-common</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2018-09-22 21:12:45 +08:00
|
|
|
<!-- Framework -->
|
2018-01-10 23:39:55 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-framework</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2020-06-23 21:38:26 +08:00
|
|
|
<!-- Core Extend
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-core-extend</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
2018-01-10 23:39:55 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
|
<developer>
|
|
|
|
|
<id>thinkgem</id>
|
|
|
|
|
<name>WangZhen</name>
|
|
|
|
|
<email>thinkgem at 163.com</email>
|
|
|
|
|
<roles><role>Project lead</role></roles>
|
|
|
|
|
<timezone>+8</timezone>
|
|
|
|
|
</developer>
|
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
|
<name>JeeSite</name>
|
|
|
|
|
<url>http://jeesite.com</url>
|
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
|
|
</project>
|