sax-xom-parser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.avides.xml</groupId> <artifactId>sax-xom-parser</artifactId> <version>2.1.0</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> <groupId>com.avides.xml</groupId> <artifactId>sax-xom-parser</artifactId> <version>2.1.0</version> <name>sax-xom-parser</name> <description>XML-streaming-parser with xom-support</description> <url>https://github.com/avides/sax-xom-parser</url> <organization> <name>AVIDES Media AG</name> <url>http://www.avides.com</url> </organization> <licenses> <license> <name>MIT License</name> <url>http://www.opensource.org/licenses/mit-license.php</url> </license> </licenses> <developers> <developer> <name>Julian Eggers</name> <email>eggers.julian@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/avides/sax-xom-parser</url> <connection>scm:git:https://github.com/avides/sax-xom-parser.git</connection> <developerConnection>scm:git:https://github.com/avides/sax-xom-parser.git</developerConnection> </scm> <properties> <!-- System --> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>dd.MM.yyyy HH:mm</maven.build.timestamp.format> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>11</java.version> <!-- Testing --> <jacoco.version>0.8.5</jacoco.version> <powermock.version>2.0.7</powermock.version> <easymock.version>4.2</easymock.version> <assertj.version>3.16.1</assertj.version> <xpath-helper.version>0.6.0</xpath-helper.version> <!-- Build --> <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version> <maven-source-plugin.version>3.2.0</maven-source-plugin.version> <maven-javadoc-plugin.version>3.1.1</maven-javadoc-plugin.version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version> <maven-failsafe-plugin.version>2.22.2</maven-failsafe-plugin.version> <maven-enforcer-plugin.version>3.0.0-M2</maven-enforcer-plugin.version> <maven-release-plugin.version>2.5.3</maven-release-plugin.version> <maven-scm-provider-gitexe.version>1.11.2</maven-scm-provider-gitexe.version> <exists-maven-plugin.version>0.0.6</exists-maven-plugin.version> <github-release-plugin.version>1.4.0</github-release-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <!-- Other --> <xom.version>1.2.10</xom.version> </properties> <dependencies> <dependency> <groupId>com.io7m.xom</groupId> <artifactId>xom</artifactId> <version>${xom.version}</version> <exclusions> <exclusion> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> </exclusion> <exclusion> <artifactId>xalan</artifactId> <groupId>xalan</groupId> </exclusion> <exclusion> <artifactId>xercesImpl</artifactId> <groupId>xerces</groupId> </exclusion> </exclusions> </dependency> <!-- Testing --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>${easymock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-module-junit4</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.powermock</groupId> <artifactId>powermock-api-easymock</artifactId> <version>${powermock.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.jacoco</groupId> <artifactId>org.jacoco.agent</artifactId> <classifier>runtime</classifier> <version>${jacoco.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.itelg</groupId> <artifactId>xpath-helper</artifactId> <version>${xpath-helper.version}</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>sonatype-oss</id> <url>https://oss.sonatype.org/content/repositories/releases</url> </repository> </repositories> <build> <plugins> <!-- BUILD AND FILES --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Hopefully fixed in version 1.7 ? (https://issues.apache.org/jira/browse/MGPG-59) --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <!-- TEST AND COVERAGE --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <argLine>-Duser.timezone=Europe/Berlin</argLine> <systemPropertyVariables> <jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <version>${maven-failsafe-plugin.version}</version> <configuration> <reportsDirectory>target/surefire-reports</reportsDirectory> </configuration> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <configuration> <rules> <dependencyConvergence /> </rules> <fail>false</fail> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <executions> <execution> <id>default-instrument</id> <goals> <goal>instrument</goal> </goals> </execution> <execution> <id>default-restore-instrumented-classes</id> <goals> <goal>restore-instrumented-classes</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>target/jacoco-ut.exec</dataFile> <outputDirectory>target/jacoco-ut</outputDirectory> </configuration> </execution> <execution> <id>integration-test-report</id> <phase>post-integration-test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>target/jacoco-it.exec</dataFile> <outputDirectory>target/jacoco-it</outputDirectory> </configuration> </execution> <execution> <id>agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>merge-results</id> <phase>verify</phase> <goals> <goal>merge</goal> </goals> <configuration> <fileSets> <fileSet> <directory>target</directory> <includes> <include>*.exec</include> </includes> </fileSet> </fileSets> <destFile>target/jacoco.exec</destFile> </configuration> </execution> <execution> <id>post-merge-report</id> <phase>verify</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>target/jacoco.exec</dataFile> <outputDirectory>target/site/jacoco</outputDirectory> </configuration> </execution> </executions> </plugin> <!-- DEPLOYMENT --> <plugin> <artifactId>maven-release-plugin</artifactId> <version>${maven-release-plugin.version}</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>${maven-scm-provider-gitexe.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.honton.chas</groupId> <artifactId>exists-maven-plugin</artifactId> <version>${exists-maven-plugin.version}</version> <configuration> <property>skip-deploy-to-central</property> <repository>https://oss.sonatype.org/content/repositories/releases/</repository> </configuration> <executions> <execution> <goals> <goal>remote</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>de.jutzig</groupId> <artifactId>github-release-plugin</artifactId> <version>${github-release-plugin.version}</version> <executions> <execution> <id>github-upload</id> <phase>deploy</phase> <goals> <goal>release</goal> </goals> <configuration> <releaseName>${project.version}</releaseName> <tag>${project.version}</tag> <artifact>${project.build.directory}/${project.artifactId}-${project.version}.jar</artifact> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> <skipRemoteStaging>${skip-deploy-to-central}</skipRemoteStaging> </configuration> </plugin> </plugins> </build> </project>