Skip to content

Commit

Permalink
Add OpenId Connect Authentication and Reverse Proxy Authentication to…
Browse files Browse the repository at this point in the history
… the managed set
  • Loading branch information
basil committed Sep 10, 2024
1 parent 2955cf2 commit b3ddfb8
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
13 changes: 12 additions & 1 deletion bom-weekly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,8 @@
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>build-user-vars-plugin</artifactId>
<version>177.vb_2fa_784145db_</version>
<!-- TODO https://github.com/jenkinsci/build-user-vars-plugin/pull/141 -->
<version>178.v79b_a_d56232e7</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
Expand Down Expand Up @@ -890,6 +891,11 @@
<artifactId>oauth-credentials</artifactId>
<version>0.653.v14cf2088e950</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>oic-auth</artifactId>
<version>4.331.vd925b_f76f3a_c</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pam-auth</artifactId>
Expand Down Expand Up @@ -975,6 +981,11 @@
<artifactId>resource-disposer</artifactId>
<version>0.23</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>reverse-proxy-auth-plugin</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>role-strategy</artifactId>
Expand Down
24 changes: 23 additions & 1 deletion sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
<properties>
<changelist>999999-SNAPSHOT</changelist>
<bom>weekly</bom>
<jenkins.version>2.475</jenkins.version>
<!-- TODO https://github.com/jenkinsci/jenkins/pull/9696 -->
<jenkins.version>2.476-rc35330.1b_8c1984dc3b_</jenkins.version>
<spotless.check.skip>false</spotless.check.skip>
<!-- TODO JENKINS-73339 until in parent POM -->
<jenkins-test-harness.version>2254.vcff7a_d4969e5</jenkins-test-harness.version>
Expand Down Expand Up @@ -747,6 +748,11 @@
<artifactId>nodejs</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>oic-auth</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pam-auth</artifactId>
Expand Down Expand Up @@ -817,6 +823,22 @@
<artifactId>pubsub-light</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>reverse-proxy-auth-plugin</artifactId>
<scope>test</scope>
<exclusions>
<!-- TODO Migrate from Acegi to Spring Security -->
<exclusion>
<groupId>org.acegisecurity</groupId>
<artifactId>acegi-security</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-dao</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>role-strategy</artifactId>
Expand Down

0 comments on commit b3ddfb8

Please sign in to comment.