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 ed6b3a0 commit 4b90ec2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bom-weekly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,11 @@
<artifactId>oauth-credentials</artifactId>
<version>0.653.v14cf2088e950</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>oic-auth</artifactId>
<version>4.340.ve70636c6590e</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>pam-auth</artifactId>
Expand Down Expand Up @@ -975,6 +980,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
21 changes: 21 additions & 0 deletions sample-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -747,6 +747,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 +822,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 4b90ec2

Please sign in to comment.