oga-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>biz.lermitage.oga</groupId> <artifactId>oga-maven-plugin</artifactId> <version>1.9.4</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.9.4</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>oga-maven-plugin-1.9.4</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.9.22</kotlin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <!-- dependencies --> <commons-io.version>2.15.1</commons-io.version> <gson.version>2.10.1</gson.version> <jsoup.version>1.12.1</jsoup.version> <maven.version>3.9.6</maven.version> <maven-plugin-annotations.version>3.11.0</maven-plugin-annotations.version> <!-- test dependencies --> <junit.version>4.13.2</junit.version> <mockserver.version>5.15.0</mockserver.version> <maven-plugin-testing-harness.version>3.3.0</maven-plugin-testing-harness.version> <!-- FIXME maven-verifier 1.8.0 breaks some unit tests: can't find local files beside the pom.xml. Per example, testProjectWithAdditionalDefinitionFiles can't find local-og-definitions.json. Maybe it's a bug in maven-verifier. --> <maven-verifier.version>1.7.2</maven-verifier.version> <!-- plugins --> <!--dokka-maven-plugin-version>1.4.20</dokka-maven-plugin-version--> <maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version> <maven-install-plugin.version>3.1.1</maven-install-plugin.version> <maven-invoker-plugin.version>3.6.0</maven-invoker-plugin.version> <maven-plugin-plugin.version>3.11.0</maven-plugin-plugin.version> <maven-source-plugin.version>3.2.1</maven-source-plugin.version> <!-- FIXME stick to 3.2.1. 3.3 fails the release:perform saying we're attaching sources twice --> <versions-maven-plugin.version>2.16.2</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.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven-plugin-annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <!-- json parser: used to read definitions file --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-resources</artifactId> <version>1.3.0</version> </dependency> <!-- fix maven 3.9.2+ warnings: Plugin should declare these Maven artifacts in `provided` scope: [org.apache.maven:maven-settings-builder:3.9.2, org.apache.maven:maven-builder-support:3.9.2, org.apache.maven:maven-artifact:3.9.2, org.apache.maven:maven-resolver-provider:3.9.2, org.apache.maven:maven-plugin-api:3.9.2, org.apache.maven:maven-core:3.9.2, org.apache.maven:maven-repository-metadata:3.9.2, org.apache.maven:maven-settings:3.9.2, org.apache.maven:maven-model-builder:3.9.2, org.apache.maven:maven-model:3.9.2] --> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings-builder</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-builder-support</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-artifact</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-resolver-provider</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-repository-metadata</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-settings</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model-builder</artifactId> <version>${maven.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-model</artifactId> <version>${maven.version}</version> <scope>provided</scope> </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> <dependency> <groupId>org.mock-server</groupId> <artifactId>mockserver-junit-rule-no-dependencies</artifactId> <version>${mockserver.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.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>8</source> <target>8</target> </configuration> <version>${maven-compiler-plugin.version}</version> </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--> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </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>