jaris
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.oliviercailloux</groupId> <artifactId>jaris</artifactId> <version>0.0.41</version> </dependency>
<?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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.oliviercailloux</groupId> <artifactId>pom</artifactId> <version>0.0.26</version> </parent> <artifactId>jaris</artifactId> <version>0.0.41</version> <name>JARiS</name> <description>Various utilities that complement those found in Guava.</description> <properties> <github-repository>${project.name}</github-repository> </properties> <build> <plugins> <plugin> <artifactId>maven-failsafe-plugin</artifactId> <version>3.5.3</version> <executions> <execution> <goals> <goal>integration-test</goal> </goals> </execution> </executions> <configuration> <classpathDependencyExcludes> <classpathDependencyExclude>net.sf.saxon:Saxon-HE</classpathDependencyExclude> <classpathDependencyExclude>xalan:xalan</classpathDependencyExclude> </classpathDependencyExcludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.sf.saxon</groupId> <artifactId>Saxon-HE</artifactId> <version>12.4</version> <optional>true</optional> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>xalan</artifactId> <version>2.7.3</version> <optional>true</optional> </dependency> <dependency> <groupId>org.junit-pioneer</groupId> <artifactId>junit-pioneer</artifactId> <version>2.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.0.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.relaxng</groupId> <artifactId>jing</artifactId> <version>20241231</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.jimfs</groupId> <artifactId>jimfs</artifactId> <version>1.3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>xalan</groupId> <artifactId>serializer</artifactId> <version>2.7.3</version> <scope>test</scope> </dependency> <dependency> <groupId>nu.validator</groupId> <artifactId>htmlparser</artifactId> <version>1.4.16</version> <scope>test</scope> </dependency> <dependency> <groupId>io.github.oliviercailloux</groupId> <artifactId>docbook</artifactId> <version>0.0.4</version> <scope>test</scope> </dependency> </dependencies> </project>