Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
abe7c486
Commit
abe7c486
authored
Feb 06, 2017
by
Greg Messner
Browse files
Reverted to no longer use OSS parent pom.
parent
5add1bdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
abe7c486
<?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>
<groupId>
com.messners
</groupId>
...
...
@@ -10,11 +11,16 @@
<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>
<parent>
<groupId>
org.sonatype.oss
</groupId>
<artifactId>
oss-parent
</artifactId>
<version>
9
</version>
</parent>
<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>
<licenses>
<license>
...
...
@@ -33,23 +39,40 @@
</developers>
<properties>
<jdk.version>
1.7
</jdk.version>
<jersey.version>
2.25
</jersey.version>
<jackson.version>
2.8.6
</jackson.version>
<junit.version>
4.12
</junit.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<jdk.version>
1.7
</jdk.version>
<jersey.version>
2.25
.1
</jersey.version>
<jackson.version>
2.8.6
</jackson.version>
<junit.version>
4.12
</junit.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
</properties>
<scm>
<url>
git@github.com:gmessner/gitlab-api.git
</url>
<connection>
scm:git:git@github.com:gmessner/gitlab-api.git
</connection>
<developerConnection>
scm:git:git@github.com:gmessner/gitlab-api.git
</developerConnection>
<tag>
HEAD
</tag>
</scm>
<build>
<defaultGoal>
package
</defaultGoal>
<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>
<groupId>
org.apache.maven.plugins
</groupId>
...
...
@@ -61,6 +84,21 @@
</configuration>
</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>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-source-plugin
</artifactId>
...
...
@@ -110,4 +148,4 @@
</dependency>
</dependencies>
</project>
</project>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment