Skip to content

Commit 27830d9

Browse files
authored
Merge pull request #326 from bitwiseman/issue/appid-expiration
[JENKINS-62249] Delegate GitHub App token generation from agents and improve caching
2 parents b411a6d + b605c64 commit 27830d9

File tree

7 files changed

+853
-71
lines changed

7 files changed

+853
-71
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@
5252
<artifactId>github</artifactId>
5353
<version>1.31.0</version>
5454
</dependency>
55+
<dependency>
56+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
57+
<artifactId>workflow-support</artifactId>
58+
</dependency>
5559
<dependency>
5660
<groupId>io.jsonwebtoken</groupId>
5761
<artifactId>jjwt-api</artifactId>
@@ -92,6 +96,24 @@
9296
<artifactId>mockito-core</artifactId>
9397
<scope>test</scope>
9498
</dependency>
99+
<dependency>
100+
<groupId>org.jenkins-ci.plugins.workflow</groupId>
101+
<artifactId>workflow-basic-steps</artifactId>
102+
<scope>test</scope>
103+
</dependency>
104+
<dependency>
105+
<groupId>org.jenkins-ci.plugins</groupId>
106+
<artifactId>git</artifactId>
107+
<classifier>tests</classifier>
108+
<scope>test</scope>
109+
<exclusions>
110+
<exclusion>
111+
<groupId>org.apache.httpcomponents</groupId>
112+
<artifactId>httpclient</artifactId>
113+
</exclusion>
114+
</exclusions>
115+
</dependency>
116+
95117

96118
<!-- JCasC compatibility -->
97119
<dependency>

0 commit comments

Comments
 (0)