attoparser
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.attoparser</groupId> <artifactId>attoparser</artifactId> <version>2.0.7.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ============================================================================ --> <!-- --> <!-- Copyright (c) 2012-2022, The ATTOPARSER team (https://www.attoparser.org) --> <!-- --> <!-- Licensed under the Apache License, Version 2.0 (the "License"); --> <!-- you may not use this file except in compliance with the License. --> <!-- You may obtain a copy of the License at --> <!-- --> <!-- https://www.apache.org/licenses/LICENSE-2.0 --> <!-- --> <!-- Unless required by applicable law or agreed to in writing, software --> <!-- distributed under the License is distributed on an "AS IS" BASIS, --> <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or --> <!-- implied. See the License for the specific language governing --> <!-- permissions and limitations under the License. --> <!-- --> <!-- ============================================================================ --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>org.attoparser</groupId> <artifactId>attoparser</artifactId> <packaging>jar</packaging> <version>2.0.7.RELEASE</version> <name>attoparser</name> <url>https://www.attoparser.org</url> <description>Powerful, fast and easy to use HTML and XML parser for Java</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>The ATTOPARSER team</name> <url>https://www.attoparser.org</url> </organization> <scm> <url>scm:git:git@github.com:attoparser/attoparser.git</url> <connection>scm:git:git@github.com:attoparser/attoparser.git</connection> <developerConnection>scm:git:git@github.com:attoparser/attoparser.git</developerConnection> <tag>attoparser-2.0.7.RELEASE</tag> </scm> <developers> <developer> <id>dfernandez</id> <name>Daniel Fernandez</name> <email>daniel.fernandez AT 11thlabs DOT org</email> <roles> <role>Project admin</role> </roles> </developer> </developers> <distributionManagement> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> </distributionManagement> <properties> <maven.compile.source>6</maven.compile.source> <maven.compile.target>6</maven.compile.target> <project.build.sourceEncoding>US-ASCII</project.build.sourceEncoding> <!-- These are needed for showing the build timestamp correctly at the attoparser.properties file --> <timestamp>${maven.build.timestamp}</timestamp> <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ssZ</maven.build.timestamp.format> <!-- A project-name-based approach is adopted for the module name (instead of a reverse-DNS one) --> <module.name>${project.artifactId}</module.name> </properties> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>org/attoparser/attoparser.properties</exclude> </excludes> </resource> <resource> <directory>src/main/resources</directory> <includes> <include>org/attoparser/attoparser.properties</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>.</directory> <targetPath>META-INF</targetPath> <includes> <include>LICENSE.txt</include> <include>NOTICE.txt</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.10.1</version> <configuration> <source>${maven.compile.source}</source> <target>${maven.compile.target}</target> <encoding>${project.build.sourceEncoding}</encoding> <!-- This will generate metadata for reflection on method parameters (JDK8+) --> <parameters>true</parameters> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.2.0</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <show>protected</show> <source>${maven.compile.source}</source> <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> <noqualifier>java.lang</noqualifier> <overview>${basedir}/src/main/javadoc/overview.html</overview> <javadocDirectory>${basedir}/src/main/javadoc</javadocDirectory> <reportOutputDirectory>${project.reporting.outputDirectory}/api/${project.artifactId}/apidocs</reportOutputDirectory> <doclint>all,-missing</doclint> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>source-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <instructions> <Export-Package>org.attoparser.dom.impl,*</Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.2</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> <addMavenDescriptor>false</addMavenDescriptor> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <!-- These two entries are non-standard, specified by the Apache Software Foundation in --> <!-- their release preparation procedures as a way to pass this information on to the --> <!-- library users. See: https://commons.apache.org/releases/prepare.html --> <X-Compile-Source-JDK>${maven.compile.source}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${maven.compile.target}</X-Compile-Target-JDK> <!-- Set the Built-By attribute in MANIFEST.MF to avoid displaying specific user names. --> <Built-By>attoparser</Built-By> <!-- Setting this automatic module name will fix the module name used by unbescape even --> <!-- if the library is not yet fully modularised. --> <Automatic-Module-Name>${module.name}</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>3.4.0</version> <configuration> <descriptors> <descriptor>src/assembly/dist.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly-deps</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.1</version> <scope>test</scope> </dependency> </dependencies> </project>