MiXML
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.charroch</groupId> <artifactId>MiXML</artifactId> <version>0.0.3</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/maven-v4_0_0.xsd"> <parent> <artifactId>oss-parent</artifactId> <groupId>org.sonatype.oss</groupId> <version>2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.github.charroch</groupId> <artifactId>MiXML</artifactId> <version>0.0.3</version> <name>MiXML</name> <description>Minimal XML parsing and traversing</description> <scm> <connection>scm:git:git@github.com:charroch/MiXML.git</connection> <developerConnection>scm:git:git@github.com:charroch/MiXML.git</developerConnection> <url>scm:git:git@github.com:charroch/MiXML.git</url> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3</version> <configuration> <verbose>true</verbose> <fork>true</fork> <executable><!-- path-to-javac --> </executable> <compilerVersion>1.6</compilerVersion> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <configuration> <stagingRepository>http://oss.sonatype.org/service/local/staging/deploy/maven2</stagingRepository> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <type>jar</type> <scope>test</scope> </dependency> </dependencies> </project>