| 组织ID: |
com.mockrunner |
| 项目ID: |
mockrunner-core |
| 版本: |
1.0.9 |
| 最后修改时间: |
2019-10-29 06:45:14 |
| 包类型: |
jar |
| 标题: |
MockRunner-Core |
| 描述: |
Core classes common to all Mockrunner modules |
| 大小: |
110.48KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.mockrunner</groupId>
<artifactId>mockrunner-core</artifactId>
<version>1.0.9</version>
</dependency>
|
| Gradle引入代码: |
com.mockrunner:mockrunner-core:1.0.9
|
| 下载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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.mockrunner</groupId>
<artifactId>mockrunner</artifactId>
<version>1.0.9</version>
<relativePath>..</relativePath>
</parent>
<artifactId>mockrunner-core</artifactId>
<name>MockRunner-Core</name>
<description>Core classes common to all Mockrunner modules</description>
<dependencies>
<!-- needed in multiple classes -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<!-- needed in StreamUtil -->
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<optional>true</optional>
</dependency>
<!-- needed for XML Util -->
<dependency>
<groupId>jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>
<!-- needed for StringUtil (Perl5Compiler) -->
<dependency>
<groupId>oro</groupId>
<artifactId>oro</artifactId>
</dependency>
<!-- needed for JarFileExtractor -->
<dependency>
<groupId>com.kirkk</groupId>
<artifactId>jaranalyzer</artifactId>
</dependency>
<!-- needed for XMLUtil -->
<dependency>
<groupId>nekohtml</groupId>
<artifactId>nekohtml</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<compilerVersion>1.5</compilerVersion>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
<plugin>
<!-- Generate a jar for the source files when deploying -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!-- Generate a jar for the javadocs when deploying -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadoc</id>
<phase>verify</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<javadocExecutable>${javadoc-executable-path}</javadocExecutable>
<charset>${project.build.sourceEncoding}</charset>
<encoding>${project.build.sourceEncoding}</encoding>
<docencoding>${project.build.sourceEncoding}</docencoding>
<failOnError>false</failOnError>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-module-exclusives</id>
<!-- Profile automatically triggered when release:perform is executed -->
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>com.github.github</groupId>
<artifactId>site-maven-plugin</artifactId>
<configuration>
<path>${project.artifactId}</path>
</configuration>
<executions>
<execution>
<id>github-site</id>
<goals>
<goal>site</goal>
</goals>
<phase>site</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.mockrunner.base.MultiThreadTestSuite$TestThread.class
com.mockrunner.base.MultiThreadTestSuite.class
com.mockrunner.base.NestedApplicationException.class
com.mockrunner.base.VerifyFailedException.class
com.mockrunner.gen.AbstractAdapterGenerator$ProcessingUnit.class
com.mockrunner.gen.AbstractAdapterGenerator.class
com.mockrunner.gen.jar.JarFileExtractor.class
com.mockrunner.gen.jar.MockrunnerJars$Permission.class
com.mockrunner.gen.jar.MockrunnerJars.class
com.mockrunner.gen.jar.MockrunnerTextSummary.class
com.mockrunner.gen.jar.TestConfigurationClassLoader.class
com.mockrunner.gen.proc.AdapterProcessor.class
com.mockrunner.gen.proc.GeneratorUtil.class
com.mockrunner.gen.proc.JavaClassGenerator$ConstructorDeclaration.class
com.mockrunner.gen.proc.JavaClassGenerator$MethodDeclaration.class
com.mockrunner.gen.proc.JavaClassGenerator.class
com.mockrunner.gen.proc.JavaLineAssembler.class
com.mockrunner.gen.proc.JavaLineParser$Block.class
com.mockrunner.gen.proc.JavaLineParser$Line.class
com.mockrunner.gen.proc.JavaLineParser.class
com.mockrunner.gen.proc.JavaLineProcessor.class
com.mockrunner.gen.proc.PackageImportSorter$Group.class
com.mockrunner.gen.proc.PackageImportSorter.class
com.mockrunner.test.consistency.Launcher.class
com.mockrunner.test.consistency.VersionConsistencyTest.class
com.mockrunner.test.gen.JarFileExtractorTest.class
com.mockrunner.test.gen.JavaClassGeneratorTest.class
com.mockrunner.test.gen.JavaLineAssemblerTest.class
com.mockrunner.test.gen.JavaLineProcessorTest.class
com.mockrunner.test.gen.MockrunnerJarsTest.class
com.mockrunner.test.gen.PackageImportSorterTest.class
com.mockrunner.test.util.AllUtilTests.class
com.mockrunner.test.util.ArrayUtilTest.class
com.mockrunner.test.util.CaseAwareMapTest.class
com.mockrunner.test.util.ClassUtilTest$Sub1.class
com.mockrunner.test.util.ClassUtilTest$Sub2.class
com.mockrunner.test.util.ClassUtilTest$Super.class
com.mockrunner.test.util.ClassUtilTest$TestClass.class
com.mockrunner.test.util.ClassUtilTest$TestInterface.class
com.mockrunner.test.util.ClassUtilTest.class
com.mockrunner.test.util.CollectionUtilTest.class
com.mockrunner.test.util.FieldUtilTest$TestSub.class
com.mockrunner.test.util.FieldUtilTest$TestSub2.class
com.mockrunner.test.util.FieldUtilTest$TestSuper.class
com.mockrunner.test.util.FieldUtilTest.class
com.mockrunner.test.util.FileUtilTest.class
com.mockrunner.test.util.MethodUtilTest$AnotherTestObject.class
com.mockrunner.test.util.MethodUtilTest$Super.class
com.mockrunner.test.util.MethodUtilTest$TestInterface.class
com.mockrunner.test.util.MethodUtilTest$TestObject.class
com.mockrunner.test.util.MethodUtilTest$TestSub.class
com.mockrunner.test.util.MethodUtilTest$TestSub2.class
com.mockrunner.test.util.MethodUtilTest$TestSub3.class
com.mockrunner.test.util.MethodUtilTest$TestSuper.class
com.mockrunner.test.util.MethodUtilTest.class
com.mockrunner.test.util.StreamUtilTest.class
com.mockrunner.test.util.StringUtilTest.class
com.mockrunner.test.util.XmlUtilTest.class
com.mockrunner.util.common.ArrayUtil.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
| 依赖Jar: |
|