| 组织ID: |
com.tvd12 |
| 项目ID: |
test-util |
| 版本: |
1.0.2 |
| 最后修改时间: |
2019-12-03 21:12:39 |
| 包类型: |
jar |
| 标题: |
test-util |
| 描述: |
A project support for testing
|
| 相关URL: |
http://www.tvd12.com/java/projects/test-util |
| 大小: |
16.24KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>com.tvd12</groupId>
<artifactId>test-util</artifactId>
<version>1.0.2</version>
</dependency>
|
| Gradle引入代码: |
com.tvd12:test-util:1.0.2
|
| 下载Jar包: |
|
| POM文件内容: |
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.jcabi</groupId>
<artifactId>parent</artifactId>
<version>0.43</version>
</parent>
<groupId>com.tvd12</groupId>
<artifactId>test-util</artifactId>
<version>1.0.2</version>
<packaging>jar</packaging>
<name>test-util</name>
<url>http://www.tvd12.com/java/projects/test-util</url>
<description>
A project support for testing
</description>
<organization>
<name>Young Monkeys</name>
<url>http://www.tvd12.com</url>
</organization>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
<mockito.version>1.10.19</mockito.version>
<testng.version>6.14.3</testng.version>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Ta Van Dung</name>
<email>itprono3@gmail.com</email>
<organization>Young Monkeys</organization>
<organizationUrl>http://www.tvd12.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:tavandung12/test-util.git</connection>
<developerConnection>scm:git:git@github.com:tavandung12/test-util.git</developerConnection>
<url>https://github.com/tavandung12/test-util</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/tavandung12/test-util/issues</url>
</issueManagement>
<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/tavandung12/test-util</url>
</ciManagement>
<distributionManagement>
<site>
<id>tvd12</id>
<url>http://www.tvd12.com/</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<exclusions>
<!-- No thank you -->
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- <version>3.5.1</version> -->
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.1.0</version>
<configuration>
<timestampFormat>${maven.build.timestamp.format}</timestampFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<phase>prepare-package</phase>
<goals><goal>report</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!-- <redirectTestOutputToFile>true</redirectTestOutputToFile> -->
<suiteXmlFiles>
<suiteXmlFile>src/test/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
buildnumber-maven-plugin
</artifactId>
<versionRange>
[1.4,)
</versionRange>
<goals>
<goal>
create-timestamp
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
com.tvd12.test.reflect.StackTraceUtil.class
com.tvd12.test.reflect.MethodBuilder.class
com.tvd12.test.reflect.ParameterTypeUtil.class
com.tvd12.test.reflect.ClassUtil.class
com.tvd12.test.reflect.MethodInvoker.class
com/tvd12/test/reflect/com-tvd12-test-util-jar.txt
com.tvd12.test.reflect.ReflectMethodUtil.class
com.tvd12.test.base.QuickLog.class
com.tvd12.test.base.BaseTest.class
com/tvd12/test/base/com-tvd12-test-util-jar.txt
com.tvd12.test.performance.Script.class
com.tvd12.test.performance.MethodPerformance.class
com.tvd12.test.performance.MethodPerformance$1.class
com.tvd12.test.performance.Performance.class
com/tvd12/test/performance/com-tvd12-test-util-jar.txt
META-INF/maven/com.tvd12/test-util/pom.xml
META-INF/maven/com.tvd12/test-util/pom.properties
|
| 依赖Jar: |
mockito-all-${mockito.version}.jar
/org.mockito/mockito-all/${mockito.version}
查看mockito-all所有版本文件
testng-${testng.version}.jar
/org.testng/testng/${testng.version}
查看testng所有版本文件
|