Commit abe7c486 authored by Greg Messner's avatar Greg Messner
Browse files

Reverted to no longer use OSS parent pom.

No related merge requests found
Showing with 51 additions and 13 deletions
+51 -13
<?xml version="1.0" encoding="UTF-8"?> <?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/maven-v4_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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.messners</groupId> <groupId>com.messners</groupId>
...@@ -10,11 +11,16 @@ ...@@ -10,11 +11,16 @@
<description>GitLab API provides a full featured Java API for working with GitLab repositories via the GitLab REST API</description> <description>GitLab API provides a full featured Java API for working with GitLab repositories via the GitLab REST API</description>
<url>http://www.messners.com/#gitlab-api/gitlab-api.html</url> <url>http://www.messners.com/#gitlab-api/gitlab-api.html</url>
<parent> <distributionManagement>
<groupId>org.sonatype.oss</groupId> <snapshotRepository>
<artifactId>oss-parent</artifactId> <id>ossrh</id>
<version>9</version> <url>https://oss.sonatype.org/content/repositories/snapshots</url>
</parent> </snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<licenses> <licenses>
<license> <license>
...@@ -33,23 +39,40 @@ ...@@ -33,23 +39,40 @@
</developers> </developers>
<properties> <properties>
<jdk.version>1.7</jdk.version> <jdk.version>1.7</jdk.version>
<jersey.version>2.25</jersey.version> <jersey.version>2.25.1</jersey.version>
<jackson.version>2.8.6</jackson.version> <jackson.version>2.8.6</jackson.version>
<junit.version>4.12</junit.version> <junit.version>4.12</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties> </properties>
<scm> <scm>
<url>git@github.com:gmessner/gitlab-api.git</url> <url>git@github.com:gmessner/gitlab-api.git</url>
<connection>scm:git:git@github.com:gmessner/gitlab-api.git</connection> <connection>scm:git:git@github.com:gmessner/gitlab-api.git</connection>
<developerConnection>scm:git:git@github.com:gmessner/gitlab-api.git</developerConnection> <developerConnection>scm:git:git@github.com:gmessner/gitlab-api.git</developerConnection>
<tag>HEAD</tag>
</scm> </scm>
<build> <build>
<defaultGoal>package</defaultGoal> <defaultGoal>package</defaultGoal>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<artifactId>maven-scm-plugin</artifactId>
<version>1.9.2</version>
<configuration>
<tag>${project.artifactId}-${project.version}</tag>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
...@@ -61,6 +84,21 @@ ...@@ -61,6 +84,21 @@
</configuration> </configuration>
</plugin> </plugin>
<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>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
...@@ -110,4 +148,4 @@ ...@@ -110,4 +148,4 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project> </project>
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment