Files
my-worker/modules/core/pom.xml

107 lines
2.7 KiB
XML
Raw Normal View History

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-02-01 13:00:11 +08:00
<version>5.3.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>
<!-- MySQL -->
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<scope>runtime</scope>
</dependency>
2020-05-05 23:55:31 +08:00
<!-- Oracle 11g -->
<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
<dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>ojdbc8</artifactId>
<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 -->
<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 -->
<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> -->
<!-- Common -->
2018-04-17 20:55:22 +08:00
<dependency>
<groupId>com.jeesite</groupId>
<artifactId>jeesite-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<!-- Framework -->
2018-01-10 23:39:55 +08:00
<dependency>
<groupId>com.jeesite</groupId>
<artifactId>jeesite-framework</artifactId>
<version>${project.parent.version}</version>
</dependency>
</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>