freelib-build-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>info.freelibrary</groupId> <artifactId>freelib-build-tools</artifactId> <version>8.0.8</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>info.freelibrary</groupId> <artifactId>freelib-build-tools</artifactId> <version>8.0.8</version> <packaging>pom</packaging> <name>FreeLibrary Build Tools</name> <description>Build tools for FreeLibrary projects.</description> <url>https://github.com/ksclarke/freelib-build-tools</url> <organization> <name>FreeLibrary</name> <url>http://projects.freelibrary.info</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <comments>Copyright (c) 2013 Kevin S. Clarke</comments> </license> </licenses> <developers> <developer> <name>Kevin S. Clarke</name> <email>ksclarke@gmail.com</email> <url>http://kevinclarke.info</url> <roles> <role>developer</role> </roles> <timezone>America/New_York</timezone> </developer> </developers> <modules> <module>freelib-resources</module> <module>freelib-parent</module> </modules> <scm> <connection>scm:git:git@github.com:ksclarke/freelib-build-tools.git</connection> <developerConnection>scm:git:git@github.com:ksclarke/freelib-build-tools.git</developerConnection> <url>git@github.com:ksclarke/freelib-build-tools.git</url> </scm> <issueManagement> <system>GitHub</system> <url>https://github.com/ksclarke/freelib-build-tools/issues</url> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <maven.source.plugin.version>3.3.1</maven.source.plugin.version> <flatten.plugin.version>1.6.0</flatten.plugin.version> <snyk.plugin.version>2.2.0</snyk.plugin.version> <maven.test.skip>true</maven.test.skip> <autorelease.artifact>false</autorelease.artifact> <maven.site.skip>true</maven.site.skip> <maven.javadoc.plugin.version>3.6.3</maven.javadoc.plugin.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <revision>0.0.0-SNAPSHOT</revision> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.site.deploy.skip>true</maven.site.deploy.skip> <gpg.plugin.version>3.2.4</gpg.plugin.version> <maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version> <nexus.staging.plugin.version>1.6.13</nexus.staging.plugin.version> <maven.site.plugin.version>3.9.1</maven.site.plugin.version> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <versionRange>[1.1.0,)</versionRange> <goals> <goal>flatten</goal> <goal>clean</goal> </goals> </pluginExecutionFilter> <action> <ignore></ignore> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> <version>${flatten.plugin.version}</version> <executions> <execution> <id>flatten</id> <phase>process-resources</phase> <goals> <goal>flatten</goal> </goals> </execution> <execution> <id>flatten.clean</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> </execution> </executions> <configuration> <updatePomFile>true</updatePomFile> <flattenMode>resolveCiFriendliesOnly</flattenMode> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.plugin.version}</version> <configuration> <skipTests>${maven.test.skip}</skipTests> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>snyk-check</id> <activation> <property> <name>env.SNYK_TOKEN</name> </property> </activation> <build> <plugins> <plugin> <groupId>io.snyk</groupId> <artifactId>snyk-maven-plugin</artifactId> <version>${snyk.plugin.version}</version> <executions> <execution> <id>snyk-test</id> <goals> <goal>test</goal> </goals> </execution> </executions> <configuration> <apiToken>${env.SNYK_TOKEN}</apiToken> <args> <arg>--org=${env.FREELIBRARY_SNYK_ORG}</arg> <arg>--all-projects</arg> <arg>--fail-on=all</arg> </args> </configuration> </plugin> </plugins> </build> </profile> <profile /> <profile> <id>deploy</id> </profile> <profile> <id>release</id> <build> <plugins> <plugin> <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> <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> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus.staging.plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>${autorelease.artifact}</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>