组织ID: |
com.google.truth |
项目ID: |
truth |
版本: |
0.36 |
最后修改时间: |
2018-08-02 22:10:03 |
包类型: |
jar |
标题: |
Truth Core |
大小: |
160.48KB |
|
Maven引入代码: |
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>0.36</version>
</dependency>
|
Gradle引入代码: |
com.google.truth:truth:0.36
|
下载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.google.truth</groupId>
<artifactId>truth-parent</artifactId>
<version>0.36</version>
</parent>
<artifactId>truth</artifactId>
<name>Truth Core</name>
<properties>
<guava.version>22.0-android</guava.version>
<guava-gwt.version>22.0</guava-gwt.version>
<gwt.version>2.8.0</gwt.version>
<junit.version>4.12</junit.version>
<jsr305.version>3.0.2</jsr305.version>
<auto-value.version>1.4.1</auto-value.version>
<compile-testing.version>0.12</compile-testing.version>
<error-prone.annotations.version>2.0.19</error-prone.annotations.version>
</properties>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>${jsr305.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
</dependency>
<!-- Required only to build the -gwt sub-artifact. -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>${auto-value.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-gwt</artifactId>
<version>${guava-gwt.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava-testlib</artifactId>
<version>${guava.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.testing.compile</groupId>
<artifactId>compile-testing</artifactId>
<version>${compile-testing.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>${error-prone.annotations.version}</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/*.gwt.xml</exclude>
</excludes>
</resource>
</resources>
<testResources>
<testResource><directory>src/test/java</directory></testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<excludes>
<exclude>**/super/**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/super/**</exclude>
<exclude>**/*.gwt.xml</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<!-- TODO(cgruber): Replace this with Gwt annotation processing plugin. -->
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>attach-gwt-sources</id>
<phase>post-integration-test</phase>
<goals><goal>jar</goal></goals>
<configuration>
<classifier>gwt</classifier>
<classesDirectory>src/main/java</classesDirectory>
<includes>
<include>**/*.java</include>
<include>**/*.gwt.xml</include>
</includes>
<excludes>
<exclude>com/google/common/truth/ClassSubject.java</exclude>
<exclude>com/google/common/truth/Expect.java</exclude>
<exclude>com/google/common/truth/IteratingVerb.java</exclude>
<exclude>com/google/common/truth/ReflectionUtil.java</exclude>
<exclude>com/google/common/truth/codegen/**</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>animal-sniffer-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*GwtTest.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwt.version}</version>
<executions>
<execution>
<id>gwt-test</id>
<goals><goal>test</goal></goals>
<configuration>
<mode>htmlunit</mode>
<productionMode>true</productionMode>
<sourceLevel>auto</sourceLevel>
<userAgents>gecko1_8</userAgents>
<includes>**/*GwtTest.java</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.0.1</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>2.7.1</version>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>utf-8</sourceEncoding>
<targetJdk>1.6</targetJdk>
</configuration>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>java8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<javadoc.param>-Xdoclint:none</javadoc.param>
</properties>
</profile>
</profiles>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.google.common.truth.StringSubject.class
com.google.common.truth.PrimitiveDoubleArraySubject$1.class
com.google.common.truth.MultimapSubject$MultimapInOrder.class
com.google.common.truth.DefaultSubject.class
com.google.common.truth.StandardSubjectBuilder$1.class
com.google.common.truth.PrimitiveFloatArraySubject.class
com.google.common.truth.GraphMatching$HopcroftKarp.class
com.google.common.truth.Subject.class
com.google.common.truth.BigDecimalSubject.class
com.google.common.truth.MapSubject.class
com.google.common.truth.PrimitiveByteArraySubject.class
com.google.common.truth.IterableSubject$2.class
com.google.common.truth.AtomicLongMapSubject.class
com.google.common.truth.FloatSubject.class
com.google.common.truth.FloatSubject$2.class
com.google.common.truth.TableSubject.class
com.google.common.truth.ExpectFailure$SimpleSubjectBuilderCallback.class
com.google.common.truth.Subject$1.class
com.google.common.truth.MultimapSubject$1.class
com.google.common.truth.MultisetSubject.class
com.google.common.truth.ThrowableSubject.class
com.google.common.truth.Correspondence$TolerantNumericEquality.class
com.google.common.truth.CustomSubjectBuilder.class
com.google.common.truth.PrimitiveDoubleArraySubject$3.class
com.google.common.truth.DoubleSubject$TolerantDoubleComparison.class
com.google.common.truth.Truth$1.class
com.google.common.truth.IterableSubject$PairwiseChecker.class
com.google.common.truth.Correspondence.class
com.google.common.truth.PrimitiveDoubleArraySubject$DoubleArrayAsIterable.class
com.google.common.truth.Expect.class
com.google.common.truth.FloatSubject$1.class
com.google.common.truth.SubjectUtils.class
com.google.common.truth.MapSubject$UsingCorrespondence.class
com.google.common.truth.DoubleSubject$2.class
com.google.common.truth.IterableSubject$1.class
com.google.common.truth.FloatSubject$TolerantFloatComparison.class
com.google.common.truth.LongSubject.class
com.google.common.truth.PrimitiveFloatArraySubject$TolerantPrimitiveFloatArrayComparison.class
com.google.common.truth.SortedMapSubject.class
com.google.common.truth.StandardSubjectBuilder.class
com.google.common.truth.ClassSubject.class
com.google.common.truth.ObjectArraySubject$1.class
com.google.common.truth.PrimitiveFloatArraySubject$FloatArrayAsIterable.class
com.google.common.truth.IterableSubject.class
com.google.common.truth.IntegerSubject.class
com.google.common.truth.FailureMetadata$1.class
com.google.common.truth.Expect$1.class
com.google.common.truth.GuavaOptionalSubject.class
com.google.common.truth.ExpectFailure$4.class
com.google.common.truth.PrimitiveFloatArraySubject$2.class
com.google.common.truth.SortedSetSubject.class
com.google.common.truth.Ordered.class
com.google.common.truth.CustomSubjectBuilder$Factory.class
com.google.common.truth.IterableSubject$3.class
com.google.common.truth.MultimapSubject$IterableEntries.class
com.google.common.truth.ExpectFailure$StandardSubjectBuilderCallback.class
com.google.common.truth.MapSubject$1.class
com.google.common.truth.IterableSubject$NotInOrder.class
com.google.common.truth.PrimitiveShortArraySubject.class
com.google.common.truth.ExpectFailure$1.class
com.google.common.truth.Correspondence$1.class
com.google.common.truth.SimpleSubjectBuilder.class
com.google.common.truth.SubjectFactory.class
com.google.common.truth.PrimitiveDoubleArraySubject$TolerantPrimitiveDoubleArrayComparison.class
com.google.common.truth.Subject$Factory.class
com.google.common.truth.PrimitiveDoubleArraySubject.class
com.google.common.truth.MathUtil.class
com.google.common.truth.PrimitiveBooleanArraySubject.class
com.google.common.truth.BooleanSubject.class
com.google.common.truth.DoubleSubject.class
com.google.common.truth.AbstractFailureStrategy.class
com.google.common.truth.PrimitiveLongArraySubject.class
com.google.common.truth.ThrowableSubject$1.class
com.google.common.truth.Platform.class
com.google.common.truth.SortedMapSubject$SortedMapAsNavigableMap.class
com.google.common.truth.PrimitiveFloatArraySubject$3.class
com.google.common.truth.package-info.class
com.google.common.truth.IterableSubject$UsingCorrespondence.class
com.google.common.truth.StandardSubjectBuilder$2.class
com.google.common.truth.ListMultimapSubject.class
com.google.common.truth.PrimitiveCharArraySubject.class
com.google.common.truth.AbstractArraySubject.class
com.google.common.truth.MapSubject$EntryCorrespondence.class
com.google.common.truth.StringUtil.class
com.google.common.truth.Expect$ExpectationGatherer.class
com.google.common.truth.IterableSubject$4.class
com.google.common.truth.ExpectFailure$3.class
com.google.common.truth.FailureMetadata$MessageAddingFailureStrategy.class
com.google.common.truth.ExpectFailure$2.class
com.google.common.truth.GraphMatching.class
com.google.common.truth.SortedSetSubject$SortedSetAsNavigableSet.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
guava-${guava.version}.jar
/com.google.guava/guava/${guava.version}
查看guava所有版本文件
jsr305-${jsr305.version}.jar
/com.google.code.findbugs/jsr305/${jsr305.version}
查看jsr305所有版本文件
junit-${junit.version}.jar
/junit/junit/${junit.version}
查看junit所有版本文件
gwt-user-${gwt.version}.jar
/com.google.gwt/gwt-user/${gwt.version}
查看gwt-user所有版本文件
auto-value-${auto-value.version}.jar
/com.google.auto.value/auto-value/${auto-value.version}
查看auto-value所有版本文件
guava-gwt-${guava-gwt.version}.jar
/com.google.guava/guava-gwt/${guava-gwt.version}
查看guava-gwt所有版本文件
guava-testlib-${guava.version}.jar
/com.google.guava/guava-testlib/${guava.version}
查看guava-testlib所有版本文件
compile-testing-${compile-testing.version}.jar
/com.google.testing.compile/compile-testing/${compile-testing.version}
查看compile-testing所有版本文件
error_prone_annotations-${error-prone.annotations.version}.jar
/com.google.errorprone/error_prone_annotations/${error-prone.annotations.version}
查看error_prone_annotations所有版本文件
|