|
4 | 4 | <parent> |
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId> |
6 | 6 | <artifactId>plugin</artifactId> |
7 | | - <version>4.54</version> |
| 7 | + <version>4.88</version> |
| 8 | + <relativePath /> |
8 | 9 | </parent> |
9 | 10 |
|
10 | 11 | <artifactId>keycloak</artifactId> |
11 | | - <version>2.4.0-SNAPSHOT</version> |
| 12 | + <version>${revision}${changelist}</version> |
12 | 13 | <name>Keycloak Authentication Plugin</name> |
13 | 14 | <description>Integrates with Keycloak Authentication</description> |
14 | 15 | <packaging>hpi</packaging> |
|
21 | 22 | </issueManagement> |
22 | 23 |
|
23 | 24 | <properties> |
| 25 | + <revision>2.4.0</revision> |
| 26 | + <changelist>-SNAPSHOT</changelist> |
| 27 | + <gitHubRepo>jenkinsci/keycloak-plugin</gitHubRepo> |
24 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
25 | 29 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
26 | 30 | <keycloak.version>20.0.3</keycloak.version> |
27 | | - <jenkins.version>2.361.4</jenkins.version> |
| 31 | + <!-- https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/ --> |
| 32 | + <jenkins.baseline>2.452</jenkins.baseline> |
| 33 | + <jenkins.version>${jenkins.baseline}.4</jenkins.version> |
28 | 34 | <hpi.compatibleSinceVersion>2.3.1</hpi.compatibleSinceVersion> |
29 | | - <log4j.version>1.7.26</log4j.version> |
30 | | - <configuration-as-code.version>1569.vb_72405b_80249</configuration-as-code.version> |
31 | | - <jackson.version>2.13.4</jackson.version> |
32 | | - <jackson.databind.version>2.13.4.2</jackson.databind.version> |
33 | 35 | </properties> |
34 | 36 |
|
35 | 37 | <licenses> |
|
58 | 60 | </developers> |
59 | 61 |
|
60 | 62 | <scm> |
61 | | - <connection>scm:git:ssh://github.com/jenkinsci/jenkins-keycloak-plugin.git</connection> |
62 | | - <developerConnection>scm:git:ssh://git@github.com/jenkinsci/jenkins-keycloak-plugin.git</developerConnection> |
63 | | - <url>https://github.com/jenkinsci/jenkins-keycloak-plugin</url> |
64 | | - <tag>HEAD</tag> |
| 63 | + <connection>scm:git:https://github.com/${gitHubRepo}.git</connection> |
| 64 | + <developerConnection>scm:git:https://github.com/${gitHubRepo}.git</developerConnection> |
| 65 | + <url>https://github.com/${gitHubRepo}</url> |
| 66 | + <tag>${scmTag}</tag> |
65 | 67 | </scm> |
| 68 | + <dependencyManagement> |
| 69 | + <dependencies> |
| 70 | + <dependency> |
| 71 | + <groupId>io.jenkins.tools.bom</groupId> |
| 72 | + <artifactId>bom-${jenkins.baseline}.x</artifactId> |
| 73 | + <version>3875.v1df09947cde6</version> |
| 74 | + <type>pom</type> |
| 75 | + <scope>import</scope> |
| 76 | + </dependency> |
| 77 | + </dependencies> |
| 78 | + </dependencyManagement> |
66 | 79 |
|
67 | 80 | <dependencies> |
68 | 81 | <dependency> |
69 | 82 | <groupId>org.keycloak</groupId> |
70 | 83 | <artifactId>keycloak-core</artifactId> |
71 | 84 | <version>${keycloak.version}</version> |
72 | | - <scope>compile</scope> |
| 85 | + <!-- provided by jackson2-api--> |
| 86 | + <exclusions> |
| 87 | + <exclusion> |
| 88 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 89 | + <artifactId>jackson-databind</artifactId> |
| 90 | + </exclusion> |
| 91 | + <exclusion> |
| 92 | + <groupId>com.fasterxml.jackson.core</groupId> |
| 93 | + <artifactId>jackson-core</artifactId> |
| 94 | + </exclusion> |
| 95 | + </exclusions> |
73 | 96 | </dependency> |
74 | 97 | <dependency> |
75 | 98 | <groupId>org.keycloak</groupId> |
76 | 99 | <artifactId>keycloak-authz-client</artifactId> |
77 | 100 | <version>${keycloak.version}</version> |
78 | | - <scope>compile</scope> |
79 | 101 | </dependency> |
80 | 102 | <dependency> |
81 | 103 | <groupId>org.keycloak</groupId> |
82 | 104 | <artifactId>keycloak-adapter-core</artifactId> |
83 | 105 | <version>${keycloak.version}</version> |
84 | | - <scope>compile</scope> |
85 | 106 | </dependency> |
86 | 107 | <dependency> |
87 | 108 | <groupId>org.keycloak</groupId> |
88 | 109 | <artifactId>keycloak-adapter-spi</artifactId> |
89 | 110 | <version>${keycloak.version}</version> |
90 | | - <scope>compile</scope> |
91 | 111 | </dependency> |
92 | 112 | <dependency> |
93 | 113 | <groupId>org.jenkins-ci.plugins</groupId> |
94 | 114 | <artifactId>mailer</artifactId> |
95 | | - <version>408.vd726a_1130320</version> |
96 | 115 | </dependency> |
97 | 116 | <dependency> |
98 | 117 | <groupId>org.slf4j</groupId> |
99 | 118 | <artifactId>slf4j-jdk14</artifactId> |
100 | | - <version>${log4j.version}</version> |
101 | 119 | </dependency> |
102 | 120 | <dependency> |
103 | 121 | <groupId>org.slf4j</groupId> |
104 | 122 | <artifactId>slf4j-api</artifactId> |
105 | | - <version>${log4j.version}</version> |
106 | 123 | </dependency> |
107 | 124 | <dependency> |
108 | 125 | <groupId>org.slf4j</groupId> |
109 | 126 | <artifactId>log4j-over-slf4j</artifactId> |
110 | | - <version>${log4j.version}</version> |
111 | 127 | </dependency> |
112 | 128 | <dependency> |
113 | 129 | <groupId>org.slf4j</groupId> |
114 | 130 | <artifactId>jcl-over-slf4j</artifactId> |
115 | | - <version>${log4j.version}</version> |
116 | 131 | </dependency> |
117 | 132 | <dependency> |
118 | | - <groupId>com.fasterxml.jackson.core</groupId> |
119 | | - <artifactId>jackson-core</artifactId> |
120 | | - <version>${jackson.version}</version> |
121 | | - </dependency> |
122 | | - <dependency> |
123 | | - <groupId>com.fasterxml.jackson.core</groupId> |
124 | | - <artifactId>jackson-databind</artifactId> |
125 | | - <version>${jackson.databind.version}</version> |
| 133 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 134 | + <artifactId>jackson2-api</artifactId> |
126 | 135 | </dependency> |
127 | 136 | <dependency> |
128 | 137 | <groupId>io.jenkins</groupId> |
129 | 138 | <artifactId>configuration-as-code</artifactId> |
130 | | - <version>${configuration-as-code.version}</version> |
131 | 139 | <scope>test</scope> |
132 | 140 | </dependency> |
133 | 141 | <dependency> |
134 | 142 | <groupId>io.jenkins.configuration-as-code</groupId> |
135 | 143 | <artifactId>test-harness</artifactId> |
136 | | - <version>${configuration-as-code.version}</version> |
137 | 144 | <scope>test</scope> |
138 | 145 | </dependency> |
139 | 146 | <dependency> |
140 | 147 | <groupId>io.jenkins.plugins</groupId> |
141 | 148 | <artifactId>javax-activation-api</artifactId> |
142 | | - <version>1.2.0-6</version> |
143 | 149 | <scope>test</scope> |
144 | 150 | </dependency> |
145 | 151 | </dependencies> |
|
0 commit comments