mxlib-database
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.sf.matrixjavalib</groupId> <artifactId>mxlib-database</artifactId> <version>3.0.1</version> </dependency>
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- 基本属性 - 项目属性 --> <artifactId>mxlib-database</artifactId> <version>3.0.1</version> <packaging>jar</packaging> <!-- 基本属性 - 属性 --> <properties> <java.version>17</java.version> </properties> <!-- 基本属性 - 项目关系 --> <parent> <groupId>net.sf.matrixjavalib</groupId> <artifactId>genesis11</artifactId> <version>43</version> </parent> <dependencies> <!-- compile --> <dependency> <groupId>commons-dbutils</groupId> <artifactId>commons-dbutils</artifactId> <version>1.8.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>net.sf.matrixjavalib</groupId> <artifactId>mxlib-common</artifactId> <version>3.0.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-core</artifactId> <version>6.5.2.Final</version> <scope>compile</scope> <exclusions> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> </exclusion> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> </exclusion> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> </exclusion> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>3.3.3</version> <scope>compile</scope> <exclusions> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> <exclusion> <!-- 排除无用传递依赖 --> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </exclusion> </exclusions> </dependency> <!-- provided --> <!-- runtime --> <dependency> <!-- 提升 Hibernate 传递依赖 --> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>4.0.2</version> <scope>runtime</scope> </dependency> <dependency> <!-- 提升 Hibernate 传递依赖 --> <groupId>net.bytebuddy</groupId> <artifactId>byte-buddy</artifactId> <version>1.14.18</version> <scope>runtime</scope> </dependency> <dependency> <!-- 提升 Hibernate 传递依赖 --> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <version>4.0.5</version> <scope>runtime</scope> </dependency> <dependency> <!-- 提升 Hibernate 传递依赖 --> <groupId>org.jboss.logging</groupId> <artifactId>jboss-logging</artifactId> <version>3.5.3.Final</version> <scope>runtime</scope> </dependency> <!-- test --> <dependency> <!-- 提升 Hibernate 传递依赖 --> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>5.1.0</version> <scope>test</scope> <exclusions> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <!-- Java 17 最高版本 10.16.1.1 --> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <version>10.16.1.1</version> <scope>test</scope> </dependency> <dependency> <!-- Java 17 最高版本 10.16.1.1 --> <groupId>org.apache.derby</groupId> <artifactId>derbytools</artifactId> <version>10.16.1.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.23.1</version> <scope>test</scope> <exclusions> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>3.26.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-hikaricp</artifactId> <version>6.5.2.Final</version> <scope>test</scope> <exclusions> <exclusion> <!-- 排除旧版本传递依赖 --> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.hibernate.orm</groupId> <artifactId>hibernate-jcache</artifactId> <version>6.5.2.Final</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.12.0</version> <scope>test</scope> </dependency> </dependencies> <!-- 构建设置 --> <!-- 项目信息 --> <name>Matrix :: 数据库工具</name> <description>数据库工具</description> <inceptionYear>2008</inceptionYear> <!-- 构建环境 --> <issueManagement> <system>GitHub</system> <url>https://github.com/tweea/matrixjavalib-main-database/issues</url> </issueManagement> <scm> <connection>scm:git:https://github.com/tweea/matrixjavalib-main-database.git</connection> <developerConnection>scm:git:https://github.com/tweea/matrixjavalib-main-database.git</developerConnection> <url>https://github.com/tweea/matrixjavalib-main-database</url> <tag>mxlib-database-3.0.1</tag> </scm> </project>