code-analysis
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.labs64.commons</groupId>
<artifactId>code-analysis</artifactId>
<version>2.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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.labs64.commons</groupId>
<artifactId>code-analysis</artifactId>
<version>2.0.1</version>
<name>Labs64 :: Commons :: Static Code Analysis Rules</name>
<url>https://www.labs64.com</url>
<description>Labs64 Static Code Analysis Rules for Java (CheckStyle, SpotBugs, PMD)</description>
<inceptionYear>2014</inceptionYear>
<organization>
<name>Labs64 GmbH</name>
<url>https://www.labs64.com</url>
</organization>
<licenses>
<license>
<name>Apache License 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/Labs64/code-analysis</url>
<connection>scm:git:git@github.com:Labs64/code-analysis.git</connection>
<developerConnection>scm:git:git@github.com:Labs64/code-analysis.git</developerConnection>
<tag>2.0.1</tag>
</scm>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/Labs64/code-analysis/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub Actions</system>
<url>https://github.com/Labs64/code-analysis/actions</url>
</ciManagement>
<developers>
<developer>
<id>labs64</id>
<name>Labs64</name>
<email>info@labs64.com</email>
<roles>
<role>Project Manager</role>
<role>Developer</role>
</roles>
<url>https://www.linkedin.com/showcase/labs64-gmbh/</url>
<organization>Labs64 GmbH</organization>
<organizationUrl>https://www.labs64.com</organizationUrl>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<project.title>${project.name}</project.title>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<maven.version>3.6.0</maven.version>
<repo.releases.url>OVERRIDE_REPO_URL</repo.releases.url>
<repo.snapshots.url>OVERRIDE_REPO_URL</repo.snapshots.url>
<!-- plugin.version>0.0.0</plugin.version -->
<maven-enforcer-plugin.version>3.0.0</maven-enforcer-plugin.version>
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
<nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>${maven-enforcer-plugin.version}</version>
<executions>
<execution>
<id>enforce-versions</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>[${maven.version},)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[${java.version},)</version>
</requireJavaVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>${maven-release-plugin.version}</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus-staging-maven-plugin.version}</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${maven-gpg-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
</plugins>
</build>
<distributionManagement>
<snapshotRepository>
<id>nlic-snapshots</id>
<url>${repo.snapshots.url}</url>
</snapshotRepository>
<repository>
<id>nlic-releases</id>
<url>${repo.releases.url}</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<!-- This is necessary for gpg to not try to use the pinentry programs -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<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>
</profile>
</profiles>
</project>