组织ID: |
com.google.truth.extensions |
项目ID: |
truth-java8-extension |
版本: |
1.0 |
最后修改时间: |
2019-08-09 10:32:08 |
包类型: |
jar |
标题: |
Truth Extension for Java8 |
描述: |
An extension for the Truth test assertion framework supporting Java8 types and structures
|
大小: |
17.99KB |
|
Maven引入代码: |
<dependency>
<groupId>com.google.truth.extensions</groupId>
<artifactId>truth-java8-extension</artifactId>
<version>1.0</version>
</dependency>
|
Gradle引入代码: |
com.google.truth.extensions:truth-java8-extension:1.0
|
下载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.extensions</groupId>
<artifactId>truth-extensions-parent</artifactId>
<version>1.0</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>
</dependency>
<dependency>
<groupId>org.checkerframework</groupId>
<artifactId>checker-compat-qual</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<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>
|
Jar包内容: |
META-INF/MANIFEST.MF
com.google.common.truth.OptionalSubject.class
com.google.common.truth.Truth8.class
com.google.common.truth.OptionalIntSubject.class
com.google.common.truth.StreamSubject.class
com.google.common.truth.PathSubject.class
com.google.common.truth.OptionalLongSubject.class
com.google.common.truth.OptionalDoubleSubject.class
com.google.common.truth.IntStreamSubject.class
com.google.common.truth.LongStreamSubject.class
META-INF/maven/com.google.truth.extensions/truth-java8-extension/pom.xml
META-INF/maven/com.google.truth.extensions/truth-java8-extension/pom.properties
|
依赖Jar: |
|