组织ID: |
org.hibernate |
项目ID: |
hibernate-testing |
版本: |
3.5.2-Final |
最后修改时间: |
2018-09-27 08:56:59 |
包类型: |
jar |
标题: |
Hibernate Testing |
描述: |
Hibernate JUnit test utilities |
大小: |
36.75KB |
|
Maven引入代码: |
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-testing</artifactId>
<version>3.5.2-Final</version>
</dependency>
|
Gradle引入代码: |
org.hibernate:hibernate-testing:3.5.2-Final
|
下载Jar包: |
|
POM文件内容: |
<?xml version="1.0"?>
<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>org.hibernate</groupId>
<artifactId>hibernate-parent</artifactId>
<version>3.5.2-Final</version>
<relativePath>../parent/pom.xml</relativePath>
</parent>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-testing</artifactId>
<packaging>jar</packaging>
<name>Hibernate Testing</name>
<description>Hibernate JUnit test utilities</description>
<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>hibernate-core</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<!-- here we need to pull JUnit deps into compile scope, as opposed to the normal test scope -->
<version>3.8.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<filtering>false</filtering>
<directory>src/main/java</directory>
<includes>
<include>**/*.hbm.xml</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
org.hibernate.junit.SkipForDialect.class
org.hibernate.junit.FailureExpected.class
org.hibernate.junit.TestSuiteVisitor.class
org.hibernate.junit.UnitTestCase$FailureExpectedTestPassedException.class
org.hibernate.junit.SkipLog.class
org.hibernate.junit.UnitTestCase.class
org.hibernate.junit.functional.ExecutionEnvironment.class
org.hibernate.junit.functional.ExecutionEnvironment$Settings.class
org.hibernate.junit.functional.FunctionalTestCase.class
org.hibernate.junit.functional.DatabaseSpecificFunctionalTestCase.class
org.hibernate.junit.functional.FunctionalTestClassTestSuite.class
org.hibernate.junit.AbstractClassLoaderIsolatedTestCase.class
org.hibernate.junit.TestSuiteVisitor$Handler.class
org.hibernate.junit.RequiresDialect.class
org.hibernate.test.annotations.HibernateTestCase.class
org.hibernate.test.annotations.HibernateTestCase$FailureExpectedTestPassedException.class
org.hibernate.test.annotations.HibernateTestCase$RollbackWork.class
org.hibernate.test.annotations.HibernateTestCase$Skip.class
org.hibernate.test.cache.BaseCacheProviderTestCase.class
org.hibernate.test.cache.Item.class
org.hibernate.test.cache.VersionedItem.class
org/hibernate/test/cache/Item.hbm.xml
org.hibernate.test.tm.TransactionManagerLookupImpl.class
org.hibernate.test.tm.ConnectionProviderImpl.class
org.hibernate.test.tm.SimpleJtaTransactionImpl.class
org.hibernate.test.tm.SimpleJtaTransactionManagerImpl.class
META-INF/maven/org.hibernate/hibernate-testing/pom.xml
META-INF/maven/org.hibernate/hibernate-testing/pom.properties
|
依赖Jar: |
hibernate-core-${version}.jar
/${groupId}/hibernate-core/${version}
查看hibernate-core所有版本文件
junit-3.8.1.jar
/junit/junit/3.8.1
查看junit所有版本文件
|