expose-versions-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.opentable</groupId> <artifactId>expose-versions-maven-plugin</artifactId> <version>1.12</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ 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 ~ ~ http://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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.opentable</groupId> <artifactId>expose-versions-maven-plugin</artifactId> <version>1.12</version> <packaging>maven-plugin</packaging> <name>Expose Versions Maven Plugin</name> <description>Exposes versions of a project and its framework parent via files and properties</description> <prerequisites> <maven>${maven.version}</maven> </prerequisites> <parent> <groupId>org.basepom</groupId> <artifactId>basepom-minimal</artifactId> <version>55</version> <relativePath /> </parent> <scm> <connection>scm:git:git://github.com/opentable/otj-version-exposure-maven-plugin.git</connection> <developerConnection>scm:git:git@github.com:opentable/otj-version-exposure-maven-plugin.git</developerConnection> <url>http://github.com/opentable/otj-version-exposure-maven-plugin</url> <tag>expose-versions-maven-plugin-1.12</tag> </scm> <properties> <!-- policy jar for license and checkstyle defaults --> <dep.basepom-policy.version>10</dep.basepom-policy.version> <dep.plugin.gpg.version>3.1.0</dep.plugin.gpg.version> <basepom.license.skip-existing>true</basepom.license.skip-existing> <basepom.check.fail-license>${basepom.check.fail-extended}</basepom.check.fail-license> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.version>3.8.4</maven.version> <basepom.oss.skip-scala-doc>true</basepom.oss.skip-scala-doc> <basepom.check.skip-javadoc>false</basepom.check.skip-javadoc> <basepom.check.fail-javadoc>false</basepom.check.fail-javadoc> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>javax.annotation</groupId> <artifactId>jsr250-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>3.6.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_maven-plugin_packaging --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.6.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> </plugin> <plugin> <artifactId>maven-install-plugin</artifactId> <version>2.5.2</version> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> </plugin> <plugin> <artifactId>maven-invoker-plugin</artifactId> <version>3.1.0</version> </plugin> <!-- checks for valid OSS license stuff and headers --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>${dep.plugin.license.version}</version> <dependencies> <dependency> <groupId>org.basepom</groupId> <artifactId>basepom-policy</artifactId> <version>${dep.basepom-policy.version}</version> </dependency> </dependencies> <configuration> <skipExistingHeaders>${basepom.license.skip-existing}</skipExistingHeaders> <failIfMissing>${basepom.check.fail-license}</failIfMissing> <header>license/basepom-apache-license-header.txt</header> <headerDefinitions> <headerDefinition>license/xml-prefix.xml</headerDefinition> </headerDefinitions> <mapping> <xml>XML_PREFIX</xml> <java>SLASHSTAR_STYLE</java> <yaml>SCRIPT_STYLE</yaml> </mapping> <strictCheck>true</strictCheck> <aggregate>true</aggregate> <useDefaultExcludes>true</useDefaultExcludes> <encoding>${project.build.sourceEncoding}</encoding> <excludes> <exclude>.*/**</exclude> <exclude>**/*.md</exclude> <exclude>**/*.rst</exclude> <exclude>**/*.adoc</exclude> <exclude>**/*.sh</exclude> <exclude>**/*.txt</exclude> <exclude>**/*.thrift</exclude> <exclude>**/*.proto</exclude> <exclude>**/*.g</exclude> <exclude>**/*.releaseBackup</exclude> <exclude>**/*.vm</exclude> <exclude>**/*.st</exclude> <exclude>**/*.raw</exclude> <exclude>**/*.ser</exclude> <exclude>**/src/license/**</exclude> </excludes> <includes> <include>src/**</include> <include>**/pom.xml</include> </includes> </configuration> </plugin> <!-- sign with gpg --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${dep.plugin.gpg.version}</version> <configuration> <useAgent>true</useAgent> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <id>mojo-descriptor</id> <goals> <goal>descriptor</goal> </goals> </execution> <execution> <id>help-goal</id> <goals> <goal>helpmojo</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <activation> <activeByDefault>true</activeByDefault> </activation> <id>build-expose-versions-maven-plugin</id> <distributionManagement> <snapshotRepository> <id>opentable.snapshot</id> <name>opentable-snapshots</name> <uniqueVersion>true</uniqueVersion> <url>https://artifactory.otenv.com/snapshots</url> </snapshotRepository> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <build> <plugins> <!-- oss requires a javadoc jar. Build one when releasing. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Sign artifacts using gpg for oss upload --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>basepom.sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>