artifact-reference-checker-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.exasol</groupId>
<artifactId>artifact-reference-checker-maven-plugin</artifactId>
<version>1.0.1</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>com.exasol</groupId>
<artifactId>artifact-reference-checker-maven-plugin</artifactId>
<version>1.0.1</version>
<packaging>maven-plugin</packaging>
<name>Artifact reference checker and unifier</name>
<description>This Maven-Plugin helps you not to forget to change references to your artifacts. For example, if you
reference your binary in the README.md file, this plugin will break the build, if you forgot to update the
version number there.</description>
<url>https://github.com/exasol/artifact-reference-checker-maven-plugin/</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://github.com/exasol/artifact-reference-checker-maven-plugin/blob/main/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Exasol</name>
<email>opensource@exasol.com</email>
<organization>Exasol AG</organization>
<organizationUrl>https://www.exasol.com/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/exasol/artifact-reference-checker-maven-plugin.git/artifact-reference-checker-maven-plugin</connection>
<developerConnection>scm:git:https://github.com/exasol/artifact-reference-checker-maven-plugin.git/artifact-reference-checker-maven-plugin</developerConnection>
<url>https://github.com/exasol/artifact-reference-checker-maven-plugin/artifact-reference-checker-maven-plugin/</url>
</scm>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>3.15.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.9.16</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-project</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>error-reporting-java</artifactId>
<version>1.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.11.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>