Download truth-java8-extension-0.32.jar file

Introduction

You can download truth-java8-extension-0.32.jar in this page.

License

Google Open Source

Type List

truth-java8-extension-0.32.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.google.truth.extensions/truth-java8-extension/pom.properties
META-INF/maven/com.google.truth.extensions/truth-java8-extension/pom.xml
com.google.common.truth.IgnoreFailuresFailureStrategy.class
com.google.common.truth.OptionalDoubleSubject.class
com.google.common.truth.OptionalIntSubject.class
com.google.common.truth.OptionalLongSubject.class
com.google.common.truth.OptionalSubject.class
com.google.common.truth.StreamSubject.class
com.google.common.truth.Truth8.class

Pom

truth-java8-extension-0.32.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.extensions</groupId>
    <artifactId>truth-extensions-parent</artifactId>
    <version>0.32</version>
  </parent>
  <artifactId>truth-java8-extension</artifactId>
  <name>Truth Extension for Java8</name>
  <description>
    An extension for the Truth test assertion framework supporting Java8 types and structures
  </description>
  <dependencies>
    <dependency>
      <groupId>com.google.truth</groupId>
      <artifactId>truth</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>3.0.1</version>
      <optional>true</optional>
    </dependency>
  </dependencies>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.8</source>
          <target>1.8</target>
        </configuration>
      </plugin>
      <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>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>


POM Entry

<dependency>
   <groupId>com.google.truth.extensions</groupId>
   <artifactId>truth-java8-extension</artifactId>
   <version>0.32</version>
</dependency>

Download

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



Download truth-java8-extension-0.32.jar file




PreviousNext

Related