xml-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.ramalapure</groupId> <artifactId>xml-parser</artifactId> <version>1.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.ramalapure</groupId> <artifactId>xml-parser</artifactId> <version>1.0</version> <name>XmlParser</name> <description>The library performs an operation on XML, XSD and returns CSV data in the following output formats: String, File, and Writer.</description> <url>https://github.com/RamAlapure/xmlparser</url> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>alapureram</id> <name>Ram Alapure</name> <email>alapureram@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/RamAlapure/xmlparser.git</connection> <developerConnection>scm:git:ssh://github.com/RamAlapure/xmlparser.git</developerConnection> <url>https://github.com/RamAlapure/xmlparser</url> </scm> <dependencies> <dependency> <groupId>com.github.xmlet</groupId> <artifactId>xsdParser</artifactId> <version>1.0.23</version> <scope>runtime</scope> </dependency> <dependency> <groupId>in.jlibs</groupId> <artifactId>jlibs-xsd</artifactId> <version>2.2.3</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>xsom</artifactId> <version>2.3.3-b02</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.10.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.github.ramalapure</groupId> <artifactId>json-parser</artifactId> <version>1.1</version> <scope>runtime</scope> </dependency> </dependencies> </project>