Skip to content

Commit

Permalink
[JENKINS-54096] Implemented gitlab permissions for multibranch, pipel…
Browse files Browse the repository at this point in the history
…ine and downstream job types
  • Loading branch information
betterphp committed Nov 19, 2021
1 parent 0080794 commit 75caa03
Show file tree
Hide file tree
Showing 9 changed files with 899 additions and 583 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ work
.settings
*.iml
.idea
*.swp
*.swo
/Session.vim
43 changes: 31 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<jenkins.version>2.222.4</jenkins.version>
<java.level>8</java.level>
<gitHubRepo>jenkinsci/${project.artifactId}-plugin</gitHubRepo>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<name>GitLab Authentication plugin</name>
Expand All @@ -30,16 +30,16 @@
</licenses>

<developers>
<developer>
<id>mohamed-el-habib</id>
<name>Mohamed EL HABIB</name>
<email>mohamed.el-habib@digitaslbi.fr</email>
<url>https://github.com/mohamed-el-habib</url>
<roles>
<role>maintainer</role>
</roles>
<timezone>Europe/Paris</timezone>
</developer>
<developer>
<id>mohamed-el-habib</id>
<name>Mohamed EL HABIB</name>
<email>mohamed.el-habib@digitaslbi.fr</email>
<url>https://github.com/mohamed-el-habib</url>
<roles>
<role>maintainer</role>
</roles>
<timezone>Europe/Paris</timezone>
</developer>
</developers>

<scm>
Expand All @@ -49,7 +49,6 @@
<tag>${scmTag}</tag>
</scm>


<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
Expand Down Expand Up @@ -82,6 +81,21 @@
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mailer</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<version>2.31</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<version>2.61</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-multibranch</artifactId>
<version>2.20</version>
</dependency>
<dependency>
<groupId>org.gitlab</groupId>
<artifactId>java-gitlab-api</artifactId>
Expand Down Expand Up @@ -110,6 +124,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci</groupId>
<artifactId>annotation-indexer</artifactId>
<version>1.12</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>git</artifactId>
Expand Down
Loading

0 comments on commit 75caa03

Please sign in to comment.