io.earcam.maven.plugin.sitemap
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.earcam.maven.plugin</groupId> <artifactId>io.earcam.maven.plugin.sitemap</artifactId> <version>0.0.4</version> </dependency>
<?xml version="1.0"?> <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>io.earcam.maven</groupId> <artifactId>io.earcam.maven.plugin</artifactId> <version>0.0.4</version> </parent> <groupId>io.earcam.maven.plugin</groupId> <artifactId>io.earcam.maven.plugin.sitemap</artifactId> <packaging>maven-plugin</packaging> <!-- <description>sitemaps.org and robots.txt integration; scalable, specification compliant</description> --> <description>sitemaps.org integration; scalable, specification compliant</description> <url>${site.url}${earcam.project.name.short}</url> <distributionManagement> <site> <id>netlify</id> <url>${site.url}${earcam.project.name.short}/</url> </site> </distributionManagement> <properties> <earcam.project.name.short>sitemap</earcam.project.name.short> </properties> <dependencies> <dependency> <groupId>io.earcam.utilitarian</groupId> <artifactId>io.earcam.utilitarian.site.sitemap</artifactId> <version>${version.utilitarian}</version> </dependency> <dependency> <groupId>io.earcam</groupId> <artifactId>io.earcam.unexceptional</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>java-hamcrest</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-toolchains-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <goalPrefix>sitemap</goalPrefix> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-docck-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <configuration> <goals> <goal>site</goal> <goal>post-site</goal> </goals> <!-- <extraArtifacts>io.earcam:io.earcam.unexceptional:${version.unexceptional}:jar</extraArtifacts> --> </configuration> <dependencies> <dependency> <groupId>io.earcam</groupId> <artifactId>io.earcam.unexceptional</artifactId> <version>${version.unexceptional}</version> </dependency> </dependencies> </plugin> </plugins> </build> </project>