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>
|
2023-11-27 09:11:19 +08:00
|
|
|
<version>5.6.0.springboot3-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>
|
2023-01-28 11:36:01 +08:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</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>
|
2023-04-05 18:55:08 +08:00
|
|
|
<version>19.3.0.0</version>
|
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>
|
2023-04-05 18:55:08 +08:00
|
|
|
<version>19.3.0.0</version>
|
2020-04-30 20:44:01 +08:00
|
|
|
<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>
|
2023-04-15 11:50:02 +08:00
|
|
|
|
2023-09-28 16:49:01 +08:00
|
|
|
<!-- Core Static -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-static</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-06-28 08:55:58 +08:00
|
|
|
<!-- CAS 单点登录模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jeesite</groupId>
|
|
|
|
|
<artifactId>jeesite-module-cas</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-06-29 12:17:05 +08:00
|
|
|
<!-- JTA 事务(当 spring.jta.enabled 为 true 的时候开启,不使用 jta 的时候不要引入该依赖)
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.atomikos</groupId>
|
|
|
|
|
<artifactId>transactions-spring-boot3-starter</artifactId>
|
|
|
|
|
<version>${atomikos.version}</version>
|
|
|
|
|
</dependency> -->
|
|
|
|
|
|
2023-04-15 11:50:02 +08:00
|
|
|
<!-- ELK 日志收集 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.logstash.logback</groupId>
|
|
|
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
|
|
|
<version>${logstash-logback.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>
|