fluentxml4j-util
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.fluentxml4j</groupId>
<artifactId>fluentxml4j-util</artifactId>
<version>2.2.1</version>
</dependency><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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.fluentxml4j</groupId>
<artifactId>fluentxml4j-parent</artifactId>
<version>2.2.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>fluentxml4j-util</artifactId>
<packaging>jar</packaging>
<name>FluentXML4J Utilities</name>
<description>Collection of utilities.</description>
<properties>
<sonar.projectKey>com.github.fluentxml4j:fluentxml4j-util</sonar.projectKey>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>