java-checkstyle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>br.com.neppo.jlibs</groupId>
<artifactId>java-checkstyle</artifactId>
<version>0.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>br.com.neppo.jlibs</groupId>
<artifactId>java-checkstyle</artifactId>
<version>0.0.1</version>
<name>Neppo's check style catalogue</name>
<description>Neppo's check style catalogue</description>
<url>https://bitbucket.org/neppo/java-checkstyle</url>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>maven-central</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</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>
<developers>
<developer>
<name>Antonio da Silva Assunção Filho</name>
<email>antoniodsaf@gmail.com</email>
<organization>Neppo</organization>
<organizationUrl>http://www.neppo.com.br</organizationUrl>
</developer>
<developer>
<name>Braulio Almeida Lima</name>
<email>psxworld101@gmail.com</email>
<organization>Neppo</organization>
<organizationUrl>http://www.neppo.com.br</organizationUrl>
</developer>
</developers>
<distributionManagement>
<snapshotRepository>
<id>nexus-neppo-snapshots</id>
<url>https://nexus.neppo.com.br/repository/maven-snapshots</url>
</snapshotRepository>
<repository>
<id>nexus-neppo-releases</id>
<url>https://nexus.neppo.com.br/repository/maven-releases</url>
</repository>
</distributionManagement>
<scm>
<connection>scm:git:git://bitbucket.org/neppo/java-checkstyle.git</connection>
<developerConnection>scm:git:ssh://bitbucket.org:neppo/java-checkstyle.git</developerConnection>
<url>https://bitbucket.org/neppo/java-checkstyle/src</url>
</scm>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
</project>