oga-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>biz.lermitage.oga</groupId> <artifactId>oga-maven-plugin</artifactId> <version>1.0.0</version> </dependency>
<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>biz.lermitage.oga</groupId> <artifactId>oga-maven-plugin</artifactId> <packaging>maven-plugin</packaging> <version>1.0.0</version> <name>oga-maven-plugin</name> <description>Old GroupIds Alerter - a Maven plugin that checks for deprecated groupId + artifactId couples.</description> <inceptionYear>2019</inceptionYear> <url>https://github.com/jonathanlermitage/oga-maven-plugin</url> <organization> <name>Jonathan Lermitage</name> <url>https://github.com/jonathanlermitage</url> </organization> <licenses> <license> <name>MIT</name> <url>https://raw.githubusercontent.com/jonathanlermitage/oga-maven-plugin/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Jonathan Lermitage</name> <email>jonathan.lermitage@gmail.com</email> <roles> <role>Lead Developer</role> </roles> <timezone>+1</timezone> </developer> </developers> <scm> <connection>scm:git:https://github.com/jonathanlermitage/oga-maven-plugin.git</connection> <developerConnection>scm:git:ssh://git@github.com/jonathanlermitage/oga-maven-plugin.git</developerConnection> <url>https://github.com/jonathanlermitage/oga-maven-plugin/tree/${project.scm.tag}</url> <tag>v1.0.0</tag> </scm> <issueManagement> <system>github</system> <url>https://github.com/jonathanlermitage/oga-maven-plugin/issues/</url> </issueManagement> <prerequisites> <maven>3.3</maven> </prerequisites> <properties> <kotlin.version>1.3.41</kotlin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- dependencies --> <gson.version>2.8.5</gson.version> <jsoup.version>1.12.1</jsoup.version> <maven.version>3.6.1</maven.version> <maven-plugin-annotations.version>3.6.0</maven-plugin-annotations.version> <!-- test dependencies --> <junit.version>4.12</junit.version> <maven-plugin-testing-harness.version>3.3.0</maven-plugin-testing-harness.version> <maven-verifier.version>1.6</maven-verifier.version> <!-- plugins --> <dokka-maven-plugin-version>0.9.18</dokka-maven-plugin-version> <maven-install-plugin.version>2.5.2</maven-install-plugin.version> <maven-invoker-plugin.version>3.2.0</maven-invoker-plugin.version> <maven-plugin-plugin.version>3.6.0</maven-plugin-plugin.version> <maven-source-plugin.version>3.1.0</maven-source-plugin.version> <versions-maven-plugin.version>2.7</versions-maven-plugin.version> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-annotations.version}</version> <scope>provided</scope> </dependency> <!-- json parser: used to read definitions file --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <!-- web scrapper: used to read dependencies deprecation on mvnrepository.com --> <!--dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>${jsoup.version}</version> </dependency--> <!-- test --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.maven.plugin-testing</groupId> <artifactId>maven-plugin-testing-harness</artifactId> <scope>test</scope> <version>${maven-plugin-testing-harness.version}</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-verifier</artifactId> <version>${maven-verifier.version}</version> <scope>test</scope> </dependency> </dependencies> <pluginRepositories> <pluginRepository> <id>jcenter</id> <name>JCenter</name> <url>https://jcenter.bintray.com/</url> </pluginRepository> </pluginRepositories> <build> <defaultGoal>verify</defaultGoal> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>process-sources</phase> <goals> <goal>compile</goal> </goals> </execution> <execution> <id>test-compile</id> <phase>process-sources</phase> <goals> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>${versions-maven-plugin.version}</version> <configuration> <allowSnapshots>false</allowSnapshots> <rulesUri>file:///${basedir}/.mvn/versions-maven-plugin-rules.xml</rulesUri> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>${maven-invoker-plugin.version}</version> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> <configuration> <streamLogs>false</streamLogs> <debug>true</debug> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven-plugin-plugin.version}</version> <configuration> <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> </configuration> <executions> <execution> <goals> <goal>descriptor</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <version>${maven-install-plugin.version}</version> <configuration> <createChecksum>false</createChecksum> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jetbrains.dokka</groupId> <artifactId>dokka-maven-plugin</artifactId> <version>${dokka-maven-plugin-version}</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>javadocJar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>publish</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/ </url> </repository> </distributionManagement> <build> <plugins> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>2.8.2</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</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-release-plugin</artifactId> <version>2.5.3</version> <configuration> <localCheckout>true</localCheckout> <pushChanges>false</pushChanges> <mavenExecutorId>forked-path</mavenExecutorId> <arguments>-Dgpg.passphrase=${gpg.passphrase}</arguments> </configuration> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.11.2</version> </dependency> </dependencies> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <!--reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>3.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> </plugins> </reporting--> </project>