parser-xml
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>parser-xml</artifactId> <version>3.10.0.Final</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>org.jboss.forge.addon</groupId> <artifactId>parser-xml-parent</artifactId> <version>3.10.0.Final</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>parser-xml</artifactId> <name>Forge - XML Parser Addon</name> <dependencies> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>parser-xml-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>parser-xml-impl</artifactId> <scope>runtime</scope> </dependency> <!-- Addon Dependencies --> <dependency> <groupId>org.jboss.forge.addon</groupId> <artifactId>resources</artifactId> <classifier>forge-addon</classifier> </dependency> <!-- Furnace Container --> <dependency> <groupId>org.jboss.forge.furnace.container</groupId> <artifactId>simple</artifactId> <classifier>forge-addon</classifier> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>create-forge-addon</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <inherited>false</inherited> <configuration> <classifier>forge-addon</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.jboss.forge.furnace</groupId> <artifactId>furnace-maven-plugin</artifactId> <executions> <execution> <id>generate-dot</id> <phase>prepare-package</phase> <goals> <goal>generate-dot</goal> </goals> <configuration> <attach>true</attach> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>