Skip to content

Commit 67a65aa

Browse files
committed
upgrade to latest gitlab4j release
1 parent 4ab2ef9 commit 67a65aa

File tree

3 files changed

+160
-1
lines changed

3 files changed

+160
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
<dependency>
116116
<groupId>org.gitlab4j</groupId>
117117
<artifactId>gitlab4j-api</artifactId>
118-
<version>4.11.1</version>
118+
<version>4.11.4</version>
119119
</dependency>
120120
<dependency>
121121
<groupId>javax.servlet</groupId>

pom.xml.releaseBackup

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.jenkins-ci.plugins</groupId>
6+
<artifactId>plugin</artifactId>
7+
<version>3.4</version>
8+
<relativePath />
9+
</parent>
10+
11+
<groupId>io.jenkins.plugins</groupId>
12+
<artifactId>gitlab-api</artifactId>
13+
<version>1.0.1-SNAPSHOT</version>
14+
<packaging>hpi</packaging>
15+
16+
<properties>
17+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
18+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
19+
<jenkins.version>2.60.3</jenkins.version>
20+
<java.level>8</java.level>
21+
</properties>
22+
23+
<name>Gitlab API Plugin</name>
24+
<description>Wraps Gitlab4J API into a plugin</description>
25+
<url>https://github.com/jenkinsci/gitlab-api-plugin</url>
26+
27+
<issueManagement>
28+
<url>https://issues.jenkins-ci.org/browse/JENKINS-57445?jql=project%20%3D%20JENKINS%20AND%20component%20%3D%20gitlab-api-plugin</url>
29+
<system>JIRA</system>
30+
</issueManagement>
31+
32+
<licenses>
33+
<license>
34+
<name>MIT License</name>
35+
<url>https://opensource.org/licenses/MIT</url>
36+
<distribution>repo</distribution>
37+
</license>
38+
</licenses>
39+
40+
<developers>
41+
<developer>
42+
<id>baymac</id>
43+
<name>Parichay Barpanda</name>
44+
<email>parichay.barpanda@gmail.com</email>
45+
</developer>
46+
</developers>
47+
48+
<scm>
49+
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
50+
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
51+
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
52+
<tag>gitlab-api-1.0.0</tag>
53+
</scm>
54+
55+
<build>
56+
<plugins>
57+
<plugin>
58+
<groupId>org.apache.maven.plugins</groupId>
59+
<artifactId>maven-enforcer-plugin</artifactId>
60+
<version>3.0.0-M1</version>
61+
<executions>
62+
<execution>
63+
<id>enforce-bytecode-version</id>
64+
<goals>
65+
<goal>enforce</goal>
66+
</goals>
67+
<configuration>
68+
<rules>
69+
<enforceBytecodeVersion>
70+
<maxJdkVersion>1.8</maxJdkVersion>
71+
<ignoreClasses>
72+
<ignoreClass>module-info</ignoreClass>
73+
</ignoreClasses>
74+
</enforceBytecodeVersion>
75+
</rules>
76+
</configuration>
77+
</execution>
78+
</executions>
79+
<dependencies>
80+
<dependency>
81+
<groupId>org.codehaus.mojo</groupId>
82+
<artifactId>extra-enforcer-rules</artifactId>
83+
<version>1.0-beta-9</version>
84+
</dependency>
85+
</dependencies>
86+
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-source-plugin</artifactId>
90+
<version>3.0.1</version>
91+
<executions>
92+
<execution>
93+
<id>attach-sources</id>
94+
<phase>package</phase>
95+
<goals>
96+
<goal>jar-no-fork</goal>
97+
</goals>
98+
</execution>
99+
</executions>
100+
</plugin>
101+
</plugins>
102+
103+
<pluginManagement>
104+
<plugins>
105+
<plugin>
106+
<groupId>org.codehaus.mojo</groupId>
107+
<artifactId>animal-sniffer-maven-plugin</artifactId>
108+
<version>1.17</version>
109+
</plugin>
110+
</plugins>
111+
</pluginManagement>
112+
</build>
113+
114+
<dependencies>
115+
<dependency>
116+
<groupId>org.gitlab4j</groupId>
117+
<artifactId>gitlab4j-api</artifactId>
118+
<version>4.11.1</version>
119+
</dependency>
120+
<dependency>
121+
<groupId>javax.servlet</groupId>
122+
<artifactId>javax.servlet-api</artifactId>
123+
<version>4.0.1</version>
124+
</dependency>
125+
</dependencies>
126+
127+
<repositories>
128+
<repository>
129+
<id>repo.jenkins-ci.org</id>
130+
<url>https://repo.jenkins-ci.org/public/</url>
131+
</repository>
132+
</repositories>
133+
<pluginRepositories>
134+
<pluginRepository>
135+
<id>repo.jenkins-ci.org</id>
136+
<url>https://repo.jenkins-ci.org/public/</url>
137+
</pluginRepository>
138+
</pluginRepositories>
139+
140+
</project>

release.properties

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#release configuration
2+
#Thu May 23 15:15:03 IST 2019
3+
scm.tagNameFormat=@{project.artifactId}-@{project.version}
4+
scm.tag=gitlab-api-1.0.1
5+
pushChanges=true
6+
scm.url=scm\:git\:git@github.com\:jenkinsci/gitlab-api-plugin.git
7+
preparationGoals=clean install
8+
remoteTagging=true
9+
projectVersionPolicyId=default
10+
scm.commentPrefix=[maven-release-plugin]
11+
project.scm.io.jenkins.plugins\:gitlab-api.tag=gitlab-api-1.0.0
12+
project.scm.io.jenkins.plugins\:gitlab-api.connection=scm\:git\:git\://github.com/jenkinsci/${project.artifactId}-plugin.git
13+
project.scm.io.jenkins.plugins\:gitlab-api.url=https\://github.com/jenkinsci/${project.artifactId}-plugin
14+
project.rel.io.jenkins.plugins\:gitlab-api=1.0.1
15+
project.dev.io.jenkins.plugins\:gitlab-api=1.0.2-SNAPSHOT
16+
exec.snapshotReleasePluginAllowed=false
17+
exec.additionalArguments=
18+
project.scm.io.jenkins.plugins\:gitlab-api.developerConnection=scm\:git\:git@github.com\:jenkinsci/${project.artifactId}-plugin.git
19+
completedPhase=end-release

0 commit comments

Comments
 (0)