xml-processor
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.tacascer</groupId> <artifactId>xml-processor</artifactId> <version>0.7.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.tacascer</groupId> <artifactId>xml-processor</artifactId> <version>0.7.4</version> <name>XML Processor</name> <description>A simple tool to flatten XML files by inlining included schemas.</description> <url>https://github.com/tacascer-org/xml-processor</url> <licenses> <license> <name>GPL-3.0</name> <url>https://www.gnu.org/licenses/gpl-3.0.html</url> </license> </licenses> <developers> <developer> <id>tacascer</id> <name>Tim Tran</name> <url>https://github.com/tacascer</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/tacascer-org/xml-processor.git</connection> <developerConnection>scm:git:ssh://git@github.com:tacascer-org/xml-processor.git</developerConnection> <url>https://github.com/tacascer-org/xml-processor</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.9.24</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.github.oshai</groupId> <artifactId>kotlin-logging-jvm</artifactId> <version>6.0.9</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jdom</groupId> <artifactId>jdom2</artifactId> <version>2.0.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>dev.drewhamilton.poko</groupId> <artifactId>poko-annotations-jvm</artifactId> <version>0.15.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <version>2.0.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>