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-re2j-extension</artifactId> 13 <name>Truth Extension for RE2J</name> 14 <description> 15 An extension for the Truth test assertion framework supporting RE2J patterns 16 </description> 17 <dependencies> 18 <dependency> 19 <groupId>com.google.truth</groupId> 20 <artifactId>truth</artifactId> 21 </dependency> 22 <dependency> 23 <groupId>com.google.re2j</groupId> 24 <artifactId>re2j</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 </plugins> 42 </build> 43</project> 44