Download truth-0.25.jar file

Introduction

You can download truth-0.25.jar in this page.

License

Google Open Source

Type List

truth-0.25.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.truth/truth/pom.properties
META-INF/maven/com.google.truth/truth/pom.xml
com.google.common.truth.AbstractArraySubject.class
com.google.common.truth.AbstractVerb.class
com.google.common.truth.AutoValue_Expect_ExpectationFailure.class
com.google.common.truth.AutoValue_Expect_ExpectationFailure.java
com.google.common.truth.BooleanSubject.class
com.google.common.truth.ClassSubject.class
com.google.common.truth.CollectionSubject.class
com.google.common.truth.ComparableSubject.class
com.google.common.truth.DefaultSubject.class
com.google.common.truth.Expect.class
com.google.common.truth.FailureStrategy.class
com.google.common.truth.IntegerSubject.class
com.google.common.truth.IterableSubject.class
com.google.common.truth.IteratingVerb.class
com.google.common.truth.ListMultimapSubject.class
com.google.common.truth.ListSubject.class
com.google.common.truth.LongSubject.class
com.google.common.truth.MapSubject.class
com.google.common.truth.MathUtil.class
com.google.common.truth.MultimapSubject.class
com.google.common.truth.MultisetSubject.class
com.google.common.truth.ObjectArraySubject.class
com.google.common.truth.OptionalSubject.class
com.google.common.truth.Ordered.class
com.google.common.truth.Platform.class
com.google.common.truth.PrimitiveBooleanArraySubject.class
com.google.common.truth.PrimitiveByteArraySubject.class
com.google.common.truth.PrimitiveCharArraySubject.class
com.google.common.truth.PrimitiveDoubleArraySubject.class
com.google.common.truth.PrimitiveFloatArraySubject.class
com.google.common.truth.PrimitiveIntArraySubject.class
com.google.common.truth.PrimitiveLongArraySubject.class
com.google.common.truth.ReflectionUtil.class
com.google.common.truth.SetMultimapSubject.class
com.google.common.truth.StringSubject.class
com.google.common.truth.StringUtil.class
com.google.common.truth.Subject.class
com.google.common.truth.SubjectFactory.class
com.google.common.truth.SubjectUtils.class
com.google.common.truth.TableSubject.class
com.google.common.truth.TestVerb.class
com.google.common.truth.ThrowableSubject.class
com.google.common.truth.Truth.class
com.google.common.truth.TruthJUnit.class
com.google.common.truth.codegen.CompilingClassLoader.class
com.google.common.truth.codegen.IteratingWrapperClassBuilder.class
org.truth0.FailureStrategy.class
org.truth0.TestVerb.class
org.truth0.Truth.class
org.truth0.subjects.Subject.class
org.truth0.subjects.SubjectFactory.class

Pom

truth-0.25.pom file content.

<?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.25</version>
  </parent>
  <artifactId>truth</artifactId>
  <properties>
    <javadoc.param></javadoc.param>
    <gwt.version>2.7.0</gwt.version>
  </properties>
  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>17.0</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.1</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.10</version>
    </dependency>
    <!-- Required only to build the -gwt sub-artifact. -->
    <dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-user</artifactId>
      <version>${gwt.version}</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.google.auto.value</groupId>
      <artifactId>auto-value</artifactId>
      <version>1.0-rc3</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-gwt</artifactId>
      <version>17.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>com.google.testing.compile</groupId>
      <artifactId>compile-testing</artifactId>
      <version>0.6</version>
      <scope>test</scope>
    </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-javadoc-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-docs</id>
            <phase>post-integration-test</phase>
            <goals><goal>jar</goal></goals>
            <configuration>
                <additionalparam>${javadoc.param}</additionalparam>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.4</version>
        <executions>
          <execution>
            <phase>post-integration-test</phase>
            <goals><goal>jar-no-fork</goal></goals>
            <configuration>
              <excludes>
                <exclude>**/super/**</exclude>
                <exclude>**/*.gwt.xml</exclude>
              </excludes>
            </configuration>
          </execution>
        </executions>
      </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>org/truth0/codegen/**</exclude>
                <exclude>org/truth0/subjects/ClassSubject.java</exclude>
                <exclude>org/truth0/util/ReflectionUtil.java</exclude>
                <exclude>org/truth0/IteratingVerb.java</exclude>
                <exclude>org/truth0/Expect.java</exclude>
              </excludes>
            </configuration>
          </execution>
        </executions>
      </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>
              <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>

POM Entry

<dependency>
   <groupId>com.google.truth</groupId>
   <artifactId>truth</artifactId>
   <version>0.25</version>
</dependency>

Download

If you think the following truth-0.25.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download truth-0.25.jar file




PreviousNext

Related