Skip to content

Commit

Permalink
Migrate to jcenter.
Browse files Browse the repository at this point in the history
  • Loading branch information
ceilfors committed Mar 16, 2015
1 parent 31372fc commit 93a35c9
Showing 1 changed file with 21 additions and 37 deletions.
58 changes: 21 additions & 37 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
<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">
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.ceilfors.maven.plugin</groupId>
<artifactId>enforcer-rules</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.2.0-SNAPSHOT</version>

<name>enforcer-rules</name>
<licenses>
Expand All @@ -25,6 +21,13 @@
<url>https://github.com/ceilfors/enforcer-rules</url>
</scm>

<distributionManagement>
<repository>
<id>bintray</id>
<url>https://api.bintray.com/maven/ceilfors/maven/enforcer-rules</url>
</repository>
</distributionManagement>

<developers>
<developer>
<id>ceilfors</id>
Expand Down Expand Up @@ -167,42 +170,23 @@
</goals>
<configuration>
<pomIncludes>
<pomInclude>**/pom.xml</pomInclude><!-- Include sub directories -->
<pomInclude>**/pom.xml</pomInclude>
<!-- Include sub directories -->
</pomIncludes>
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 93a35c9

Please sign in to comment.