| 组织ID: |
org.objenesis |
| 项目ID: |
objenesis-tck |
| 版本: |
1.2 |
| 最后修改时间: |
2018-07-27 18:14:32 |
| 包类型: |
jar |
| 标题: |
Objenesis TCK |
| 大小: |
58.89KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis-tck</artifactId>
<version>1.2</version>
</dependency>
|
| Gradle引入代码: |
org.objenesis:objenesis-tck:1.2
|
| 下载Jar包: |
|
| POM文件内容: |
<?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/maven-v4_0_0.xsd">
<parent>
<artifactId>objenesis-parent</artifactId>
<groupId>org.objenesis</groupId>
<version>1.2</version>
<relativePath>..</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>objenesis-tck</artifactId>
<name>Objenesis TCK</name>
<build>
<plugins>
<plugin>
<groupId>com.keyboardsamurais.maven</groupId>
<artifactId>maven-timestamp-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.google.code.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-remote-resources-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.objenesis.tck.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://objenesis.googlecode.com/svn/docs/apidocs/</link>
</links>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>jvm-test</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>Sun 1.3</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${sun_jdk1_3.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>Sun 1.4</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${sun_jdk1_4.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>Sun 1.5</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${sun_jdk1_5.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>Sun 1.6</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${sun_jdk1_6.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>JRockit for Java 1.3</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${jrockit1_3.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>JRockit for Java 1.4</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${jrockit1_4.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>JRockit for Java 1.5</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${jrockit1_5.jvm}</jvm>
</configuration>
</execution>
<execution>
<id>JRockit for Java 1.6</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<jvm>${jrockit1_6.jvm}</jvm>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>test-release</id>
<phase>integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<inherited>false</inherited>
<configuration>
<executable>java</executable>
<arguments>
<argument>-jar</argument>
<argument>${project.build.directory}\${project.build.finalName}.jar</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-test</artifactId>
<version>1.2.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>com.springsource.junit</artifactId>
<groupId>org.junit</groupId>
</exclusion>
<exclusion>
<artifactId>org.springframework.test</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
<exclusion>
<artifactId>com.springsource.org.objectweb.asm</artifactId>
<groupId>org.objectweb.asm</groupId>
</exclusion>
<exclusion>
<artifactId>spring-osgi-core</artifactId>
<groupId>org.springframework.osgi</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-annotation</artifactId>
<version>1.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-extender</artifactId>
<version>1.2.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>spring-osgi-io</artifactId>
<groupId>org.springframework.osgi</groupId>
</exclusion>
<exclusion>
<artifactId>spring-osgi-core</artifactId>
<groupId>org.springframework.osgi</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>com.springsource.slf4j.api</artifactId>
<version>1.5.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>com.springsource.slf4j.log4j</artifactId>
<version>1.5.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<artifactId>com.springsource.org.apache.log4j</artifactId>
<groupId>org.apache.log4j</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>log4j.osgi</artifactId>
<version>1.2.15-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.eclipse.osgi</groupId>
<artifactId>org.eclipse.osgi</artifactId>
<version>3.2.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE
META-INF/NOTICE
org.objenesis.tck.CandidateLoader$1.class
org.objenesis.tck.CandidateLoader$ErrorHandler.class
org.objenesis.tck.CandidateLoader$LoggingErrorHandler.class
org.objenesis.tck.CandidateLoader.class
org/objenesis/tck/candidates/candidates.properties
org.objenesis.tck.candidates.ConstructorThrowingException.class
org.objenesis.tck.candidates.ConstructorWithArguments.class
org.objenesis.tck.candidates.ConstructorWithMandatoryArguments.class
org.objenesis.tck.candidates.DefaultPackageConstructor.class
org.objenesis.tck.candidates.DefaultPrivateConstructor.class
org.objenesis.tck.candidates.DefaultProtectedConstructor.class
org.objenesis.tck.candidates.DefaultPublicConstructor.class
org.objenesis.tck.candidates.NoConstructor.class
org/objenesis/tck/candidates/serializable-candidates.properties
org.objenesis.tck.candidates.SerializableConstructorThrowingException.class
org.objenesis.tck.candidates.SerializableConstructorWithArguments.class
org.objenesis.tck.candidates.SerializableConstructorWithMandatoryArguments.class
org.objenesis.tck.candidates.SerializableDefaultPackageConstructor.class
org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor.class
org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor.class
org.objenesis.tck.candidates.SerializableDefaultPublicConstructor.class
org.objenesis.tck.candidates.SerializableNoConstructor.class
org.objenesis.tck.candidates.SerializableReplacer.class
org.objenesis.tck.candidates.SerializableResolver.class
org.objenesis.tck.candidates.SerializableWithAncestorThrowingException.class
org.objenesis.tck.Main$MockClass.class
org.objenesis.tck.Main$MockSuperClass.class
org.objenesis.tck.Main.class
org.objenesis.tck.Reporter.class
org.objenesis.tck.TCK.class
org.objenesis.tck.TextReporter$Result.class
org.objenesis.tck.TextReporter.class
org.objenesis.instantiator.basic.AccessibleInstantiator.class
org.objenesis.instantiator.basic.ConstructorInstantiator.class
org.objenesis.instantiator.basic.NewInstanceInstantiator.class
org.objenesis.instantiator.basic.ObjectInputStreamInstantiator$MockStream.class
org.objenesis.instantiator.basic.ObjectInputStreamInstantiator.class
org.objenesis.instantiator.basic.ObjectStreamClassInstantiator.class
org.objenesis.instantiator.gcj.GCJInstantiator.class
org.objenesis.instantiator.gcj.GCJInstantiatorBase$DummyStream.class
org.objenesis.instantiator.gcj.GCJInstantiatorBase.class
org.objenesis.instantiator.gcj.GCJSerializationInstantiator.class
org.objenesis.instantiator.jrockit.JRockit131Instantiator.class
org.objenesis.instantiator.jrockit.JRockitLegacyInstantiator.class
org.objenesis.instantiator.NullInstantiator.class
org.objenesis.instantiator.ObjectInstantiator.class
org.objenesis.instantiator.perc.PercInstantiator.class
org.objenesis.instantiator.perc.PercSerializationInstantiator.class
org.objenesis.instantiator.SerializationInstantiatorHelper.class
org.objenesis.instantiator.sun.Sun13Instantiator.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
spring-osgi-test-1.2.0.jar
/org.springframework.osgi/spring-osgi-test/1.2.0
查看spring-osgi-test所有版本文件
spring-osgi-annotation-1.2.0.jar
/org.springframework.osgi/spring-osgi-annotation/1.2.0
查看spring-osgi-annotation所有版本文件
spring-osgi-extender-1.2.0.jar
/org.springframework.osgi/spring-osgi-extender/1.2.0
查看spring-osgi-extender所有版本文件
com.springsource.slf4j.org.apache.commons.logging-1.5.0.jar
/org.slf4j/com.springsource.slf4j.org.apache.commons.logging/1.5.0
查看com.springsource.slf4j.org.apache.commons.logging所有版本文件
com.springsource.slf4j.api-1.5.0.jar
/org.slf4j/com.springsource.slf4j.api/1.5.0
查看com.springsource.slf4j.api所有版本文件
com.springsource.slf4j.log4j-1.5.0.jar
/org.slf4j/com.springsource.slf4j.log4j/1.5.0
查看com.springsource.slf4j.log4j所有版本文件
log4j.osgi-1.2.15-SNAPSHOT.jar
/org.springframework.osgi/log4j.osgi/1.2.15-SNAPSHOT
查看log4j.osgi所有版本文件
org.eclipse.osgi-3.2.2.jar
/org.eclipse.osgi/org.eclipse.osgi/3.2.2
查看org.eclipse.osgi所有版本文件
junit-3.8.2.jar
/junit/junit/3.8.2
查看junit所有版本文件
|