123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?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>
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-parent</artifactId>
- <version>4.4.1-SNAPSHOT</version>
- <relativePath>../../parent/pom.xml</relativePath>
- </parent>
- <artifactId>jeesite-module-core</artifactId>
- <packaging>jar</packaging>
- <name>JeeSite Module Core</name>
- <url>http://jeesite.com</url>
- <inceptionYear>2013-Now</inceptionYear>
- <dependencies>
- <!-- MySQL -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- Oracle 11g -->
- <dependency>
- <groupId>com.oracle</groupId>
- <artifactId>ojdbc6</artifactId>
- <version>11.2.0.3</version>
- <scope>runtime</scope>
- </dependency>
- <!-- Oracle 12c
- <dependency>
- <groupId>com.oracle.ojdbc</groupId>
- <artifactId>ojdbc8</artifactId>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>com.oracle.ojdbc</groupId>
- <artifactId>orai18n</artifactId>
- <scope>runtime</scope>
- </dependency> -->
- <!-- SqlServer 2008 -->
- <dependency>
- <groupId>net.sourceforge.jtds</groupId>
- <artifactId>jtds</artifactId>
- <scope>runtime</scope>
- </dependency>
- <!-- 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>
- <!-- H2 DB
- <dependency>
- <groupId>com.h2database</groupId>
- <artifactId>h2</artifactId>
- <scope>runtime</scope>
- </dependency> -->
- <!-- Common -->
- <dependency>
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-common</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <!--敏感词-->
- <dependency>
- <groupId>com.github.houbb</groupId>
- <artifactId>sensitive-word</artifactId>
- <version>0.1.0</version>
- </dependency>
- <!-- Framework -->
- <dependency>
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-framework</artifactId>
- <version>${project.parent.version}</version>
- </dependency>
- <!--<dependency>
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-module-sso</artifactId>
- <version>4.4.1-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>-->
- <!-- Core Extend
- <dependency>
- <groupId>com.jeesite</groupId>
- <artifactId>jeesite-module-core-extend</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>
|