| 组织ID: |
org.objenesis |
| 项目ID: |
objenesis-tck |
| 版本: |
2.5 |
| 最后修改时间: |
2019-05-05 21:07:34 |
| 包类型: |
jar |
| 标题: |
Objenesis TCK |
| 描述: |
Objenesis' TCK |
| 大小: |
83.43KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis-tck</artifactId>
<version>2.5</version>
</dependency>
|
| Gradle引入代码: |
org.objenesis:objenesis-tck:2.5
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.objenesis</groupId>
<artifactId>objenesis-parent</artifactId>
<version>2.5</version>
</parent>
<artifactId>objenesis-tck</artifactId>
<name>Objenesis TCK</name>
<description>Objenesis' TCK</description>
<url>http://objenesis.org</url>
<properties>
<paxexam.version>3.5.0</paxexam.version>
</properties>
<dependencies>
<dependency>
<groupId>org.objenesis</groupId>
<artifactId>objenesis</artifactId>
<version>${project.version}</version>
</dependency>
<!-- Dependencies below are for the OSGi test -->
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-junit4</artifactId>
<version>${paxexam.version}</version>
<scope>test</scope>
<exclusions>
<!-- Use the one bundled in Felix -->
<exclusion>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-container-native</artifactId>
<version>${paxexam.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.ops4j.pax.exam</groupId>
<artifactId>pax-exam-link-mvn</artifactId>
<version>${paxexam.version}</version>
<scope>test</scope>
</dependency>
<!-- And this is our OSGi container -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.framework</artifactId>
<version>5.6.1</version>
<scope>test</scope>
</dependency>
<!-- This is just to have a nice logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.keyboardsamurais.maven</groupId>
<artifactId>maven-timestamp-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mycila.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>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>jvm-test</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<id>specific-jvm</id>
<goals>
<goal>test</goal>
</goals>
<phase>test</phase>
<configuration>
<jvm>${my.jvm}</jvm>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!-- Activate to perform integration tests -->
<id>full</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<inherited>false</inherited>
<configuration>
<executable>java</executable>
<arguments>
<argument>-jar</argument>
<argument>${project.build.directory}/${project.build.finalName}.jar</argument>
</arguments>
</configuration>
<executions>
<execution>
<id>test-release</id>
<phase>integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
META-INF/LICENSE
org.objenesis.tck.candidates.DefaultPrivateConstructor.class
org.objenesis.tck.candidates.SerializableConstructorWithMandatoryArguments.class
org.objenesis.tck.candidates.SerializableWithAncestorThrowingException.class
org.objenesis.tck.search.SearchWorkingInstantiatorListener.class
META-INF/NOTICE
org.objenesis.tck.candidates.ConstructorWithArguments.class
org.objenesis.tck.candidates.NoConstructor.class
org/objenesis/tck/candidates/serializable-candidates.properties
org.objenesis.tck.candidates.SerializableNoConstructor.class
org.objenesis.tck.search.ClassEnumerator$1.class
org.objenesis.tck.CandidateLoader$ErrorHandler.class
org.objenesis.tck.candidates.ConstructorWithMandatoryArguments.class
org.objenesis.tck.candidates.SerializableDefaultPublicConstructor.class
org.objenesis.tck.Reporter.class
org.objenesis.tck.TextReporter$Result.class
org.objenesis.tck.CandidateLoader$1.class
org.objenesis.tck.candidates.DefaultPackageConstructor.class
org.objenesis.tck.candidates.SerializableConstructorThrowingException.class
org.objenesis.tck.candidates.SerializableReplacer.class
org.objenesis.tck.search.ClassEnumerator.class
org.objenesis.tck.CandidateLoader$LoggingErrorHandler.class
org.objenesis.tck.candidates.DefaultProtectedConstructor.class
org.objenesis.tck.candidates.SerializableDefaultPrivateConstructor.class
org.objenesis.tck.Main$MockSuperClass.class
org.objenesis.tck.CandidateLoader.class
org.objenesis.tck.candidates.DefaultPublicConstructor.class
org.objenesis.tck.candidates.SerializableDefaultProtectedConstructor.class
org.objenesis.tck.Main.class
org.objenesis.tck.TextReporter.class
org/objenesis/tck/candidates/candidates.properties
org.objenesis.tck.candidates.SerializableConstructorWithArguments.class
org.objenesis.tck.candidates.SerializableResolver.class
org.objenesis.tck.search.SearchWorkingInstantiator.class
org.objenesis.tck.TCK.class
org.objenesis.tck.candidates.ConstructorThrowingException.class
org.objenesis.tck.candidates.SerializableDefaultPackageConstructor.class
org.objenesis.tck.Main$MockClass.class
org.objenesis.tck.search.SystemOutListener.class
org.objenesis.instantiator.basic.AccessibleInstantiator.class
org.objenesis.instantiator.basic.NewInstanceInstantiator.class
org.objenesis.instantiator.gcj.GCJInstantiatorBase$DummyStream.class
org.objenesis.ObjenesisException.class
org.objenesis.instantiator.basic.ClassDefinitionUtils$1.class
org.objenesis.instantiator.basic.ClassDefinitionUtils$2.class
org.objenesis.instantiator.gcj.GCJInstantiatorBase.class
org.objenesis.instantiator.perc.PercSerializationInstantiator.class
org.objenesis.instantiator.sun.SunReflectionFactoryInstantiator.class
org.objenesis.ObjenesisStd.class
org.objenesis.instantiator.android.Android18Instantiator.class
org.objenesis.instantiator.basic.NullInstantiator.class
org.objenesis.instantiator.gcj.GCJSerializationInstantiator.class
org.objenesis.instantiator.sun.MagicInstantiator.class
org.objenesis.ObjenesisSerializer.class
org.objenesis.instantiator.android.Android17Instantiator.class
org.objenesis.instantiator.basic.FailingInstantiator.class
org.objenesis.instantiator.gcj.GCJInstantiator.class
org.objenesis.instantiator.sun.SunReflectionFactoryHelper.class
org.objenesis.ObjenesisHelper.class
org.objenesis.strategy.StdInstantiatorStrategy.class
org.objenesis.instantiator.android.AndroidSerializationInstantiator.class
org.objenesis.instantiator.basic.ConstructorInstantiator.class
org.objenesis.instantiator.basic.ObjectInputStreamInstantiator.class
org.objenesis.instantiator.perc.PercInstantiator.class
org.objenesis.instantiator.sun.UnsafeFactoryInstantiator.class
org.objenesis.strategy.PlatformDescription.class
org.objenesis.strategy.SingleInstantiatorStrategy.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
objenesis-${project.version}.jar
/org.objenesis/objenesis/${project.version}
查看objenesis所有版本文件
pax-exam-junit4-${paxexam.version}.jar
/org.ops4j.pax.exam/pax-exam-junit4/${paxexam.version}
查看pax-exam-junit4所有版本文件
pax-exam-container-native-${paxexam.version}.jar
/org.ops4j.pax.exam/pax-exam-container-native/${paxexam.version}
查看pax-exam-container-native所有版本文件
pax-exam-link-mvn-${paxexam.version}.jar
/org.ops4j.pax.exam/pax-exam-link-mvn/${paxexam.version}
查看pax-exam-link-mvn所有版本文件
org.apache.felix.framework-5.6.1.jar
/org.apache.felix/org.apache.felix.framework/5.6.1
查看org.apache.felix.framework所有版本文件
logback-classic-1.1.7.jar
/ch.qos.logback/logback-classic/1.1.7
查看logback-classic所有版本文件
|