• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<project
3    xmlns="http://maven.apache.org/POM/4.0.0"
4    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6  <modelVersion>4.0.0</modelVersion>
7  <parent>
8    <groupId>com.google.truth.extensions</groupId>
9    <artifactId>truth-extensions-parent</artifactId>
10    <version>HEAD-SNAPSHOT</version>
11  </parent>
12  <artifactId>truth-java8-extension</artifactId>
13  <name>Truth Extension for Java8</name>
14  <description>
15    An extension for the Truth test assertion framework supporting Java8 types and structures
16  </description>
17  <dependencies>
18    <dependency>
19      <groupId>com.google.truth</groupId>
20      <artifactId>truth</artifactId>
21    </dependency>
22    <dependency>
23      <groupId>org.checkerframework</groupId>
24      <artifactId>checker-qual</artifactId>
25    </dependency>
26  </dependencies>
27  <build>
28    <resources>
29      <resource>
30        <directory>../..</directory>
31        <includes>
32          <include>LICENSE</include>
33        </includes>
34        <targetPath>META-INF</targetPath>
35      </resource>
36    </resources>
37    <plugins>
38      <plugin>
39        <artifactId>maven-javadoc-plugin</artifactId>
40      </plugin>
41      <plugin>
42        <artifactId>maven-compiler-plugin</artifactId>
43      </plugin>
44      <plugin>
45        <artifactId>maven-jar-plugin</artifactId>
46        <executions>
47          <execution>
48            <id>attach-gwt-sources</id>
49            <phase>post-integration-test</phase>
50            <goals><goal>jar</goal></goals>
51            <configuration>
52              <classifier>gwt</classifier>
53              <classesDirectory>src/main/java</classesDirectory>
54              <includes>
55                <include>**/*.java</include>
56                <include>**/*.gwt.xml</include>
57              </includes>
58            </configuration>
59          </execution>
60        </executions>
61      </plugin>
62    </plugins>
63  </build>
64</project>
65
66
67