-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
125 lines (117 loc) · 4.76 KB
/
pom.xml
File metadata and controls
125 lines (117 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.87</version>
<relativePath/>
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>akeyless-credentials-provider</artifactId>
<version>1.0.10</version>
<packaging>hpi</packaging>
<name>Akeyless Credentials Provider</name>
<description>Access credentials from Akeyless in Jenkins as CredentialsProvider (like AWS Secrets Manager Credentials Provider). Uses the Akeyless Java SDK directly with API Key authentication (access_id / access_key stored in plugin config).</description>
<url>https://github.com/jenkinsci/akeyless-credentials-provider-plugin</url>
<properties>
<jenkins.baseline>2.479.3</jenkins.baseline>
<jenkins.version>2.479.3</jenkins.version>
<revision>1.0.10</revision>
<changelist></changelist>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.479.x</artifactId>
<version>4545.v56392b_7ca_7b_a_</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<!-- Align with BOM upper bound so enforcer passes -->
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.36.0</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>1.9.10</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Resolve compiler "class file for jakarta.servlet.ServletException not found" when akeyless SDK or deps reference Jakarta -->
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<!-- Credentials API -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>credentials</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plain-credentials</artifactId>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ssh-credentials</artifactId>
</dependency>
<!-- Akeyless Java SDK for API calls (auth, list-items, get-secret-value) -->
<dependency>
<groupId>io.akeyless</groupId>
<artifactId>akeyless-java</artifactId>
<version>5.0.8</version>
</dependency>
<!-- Akeyless CloudId for AWS IAM, Azure AD, GCP (from akeyless-java-cloud-id-lightweight via JitPack) -->
<dependency>
<groupId>com.github.akeylesslabs</groupId>
<artifactId>akeyless-java-cloud-id-lightweight</artifactId>
<version>v0.1.2</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
<repository>
<id>akeyless-java</id>
<url>https://akeyless.jfrog.io/artifactory/akeyless-java</url>
<snapshots><enabled>false</enabled></snapshots>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<!-- Skip license plugin when running on Java 21+ (Groovy in plugin does not support class file version 69) -->
<plugin>
<groupId>io.jenkins.tools.maven</groupId>
<artifactId>license-maven-plugin</artifactId>
<executions>
<execution>
<id>default</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>