2019-08-22 23:06:11 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
<!--
|
|
|
|
|
|
The MIT License
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2019, CloudBees, Inc.
|
|
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
|
THE SOFTWARE.
|
|
|
|
|
|
-->
|
2024-01-02 16:11:38 +08:00
|
|
|
|
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2019-08-22 23:06:11 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>org.jenkins-ci.main</groupId>
|
|
|
|
|
|
<artifactId>jenkins-parent</artifactId>
|
2024-10-08 22:08:31 +08:00
|
|
|
|
<version>2.480</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>jenkins-bom</artifactId>
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
|
|
|
|
<name>Jenkins BOM</name>
|
|
|
|
|
|
<description>The module contains dependencies that are used by a specific Jenkins version</description>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
2024-05-19 00:42:08 +08:00
|
|
|
|
<commons-fileupload2.version>2.0.0-M2</commons-fileupload2.version>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<stapler.version>1903.v994a_db_314d58</stapler.version>
|
2021-12-16 02:24:45 +08:00
|
|
|
|
<groovy.version>2.4.21</groovy.version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
|
<dependencies>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.google.inject</groupId>
|
|
|
|
|
|
<artifactId>guice-bom</artifactId>
|
2023-05-16 15:12:16 +08:00
|
|
|
|
<version>6.0.0</version>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2024-08-14 20:11:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
|
<artifactId>slf4j-bom</artifactId>
|
|
|
|
|
|
<version>2.0.16</version>
|
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2022-04-02 13:52:52 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-framework-bom</artifactId>
|
2024-09-14 06:21:55 +08:00
|
|
|
|
<version>6.1.13</version>
|
2022-04-02 13:52:52 +08:00
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2021-12-31 23:52:48 +08:00
|
|
|
|
<dependency>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<!-- https://docs.spring.io/spring-security/reference/6.3/getting-spring-security.html#getting-maven-no-boot -->
|
2020-11-07 02:30:25 +08:00
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
|
<artifactId>spring-security-bom</artifactId>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<version>6.3.3</version>
|
2020-11-07 02:30:25 +08:00
|
|
|
|
<type>pom</type>
|
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
|
</dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<!-- JENKINS-21160: Remoting also depends on args4j; please update accordingly -->
|
|
|
|
|
|
<groupId>args4j</groupId>
|
|
|
|
|
|
<artifactId>args4j</artifactId>
|
2024-08-08 11:28:06 +08:00
|
|
|
|
<version>2.37</version>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
</dependency>
|
2019-08-23 21:24:11 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
2020-06-08 16:14:17 +08:00
|
|
|
|
<version>${spotbugs-annotations.version}</version>
|
2019-08-23 21:24:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
|
<artifactId>guava</artifactId>
|
2024-10-02 22:49:32 +08:00
|
|
|
|
<version>33.3.1-jre</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<!-- Overriding Stapler’s 1.1.3 version to diagnose JENKINS-20618: -->
|
|
|
|
|
|
<groupId>com.jcraft</groupId>
|
|
|
|
|
|
<artifactId>jzlib</artifactId>
|
|
|
|
|
|
<version>1.1.3-kohsuke-1</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>com.sun.solaris</groupId>
|
|
|
|
|
|
<artifactId>embedded_su4j</artifactId>
|
|
|
|
|
|
<version>1.1</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>com.sun.xml.txw2</groupId>
|
|
|
|
|
|
<artifactId>txw2</artifactId>
|
|
|
|
|
|
<version>20110809</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>com.thoughtworks.xstream</groupId>
|
|
|
|
|
|
<artifactId>xstream</artifactId>
|
2022-12-28 02:40:47 +08:00
|
|
|
|
<version>1.4.20</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-beanutils</groupId>
|
|
|
|
|
|
<artifactId>commons-beanutils</artifactId>
|
|
|
|
|
|
<version>1.9.4</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2024-07-17 11:37:52 +08:00
|
|
|
|
<version>1.17.1</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-collections</groupId>
|
|
|
|
|
|
<artifactId>commons-collections</artifactId>
|
|
|
|
|
|
<version>3.2.2</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
2024-09-19 11:29:18 +08:00
|
|
|
|
<version>2.17.0</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
|
|
<artifactId>commons-jelly-tags-fmt</artifactId>
|
|
|
|
|
|
<version>1.0</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-jelly</groupId>
|
|
|
|
|
|
<artifactId>commons-jelly-tags-xml</artifactId>
|
|
|
|
|
|
<version>1.1</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
|
<version>2.6</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>io.jenkins.stapler</groupId>
|
|
|
|
|
|
<artifactId>jenkins-stapler-support</artifactId>
|
|
|
|
|
|
<version>1.1</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
2024-05-19 19:40:24 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<version>5.0.0</version>
|
2024-05-19 19:40:24 +08:00
|
|
|
|
</dependency>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>jakarta.servlet.jsp.jstl</groupId>
|
|
|
|
|
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<version>2.0.0</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
|
|
<artifactId>jaxen</artifactId>
|
2022-12-05 02:09:46 +08:00
|
|
|
|
<version>2.0.0</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>net.java.dev.jna</groupId>
|
|
|
|
|
|
<artifactId>jna</artifactId>
|
2024-09-17 09:38:53 +08:00
|
|
|
|
<version>5.15.0</version>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependency>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>net.java.sezpoz</groupId>
|
|
|
|
|
|
<artifactId>sezpoz</artifactId>
|
|
|
|
|
|
<version>1.13</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>net.jcip</groupId>
|
|
|
|
|
|
<artifactId>jcip-annotations</artifactId>
|
|
|
|
|
|
<version>1.0</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
2022-10-31 01:34:37 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
|
|
</dependency>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.apache.ant</groupId>
|
|
|
|
|
|
<artifactId>ant</artifactId>
|
2024-08-30 03:28:23 +08:00
|
|
|
|
<version>1.10.15</version>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2024-03-11 22:23:45 +08:00
|
|
|
|
<version>1.26.1</version>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
</dependency>
|
2024-05-19 00:42:08 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-core</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-distribution</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-jakarta-servlet5</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-jakarta-servlet6</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-javax</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-fileupload2-portlet</artifactId>
|
|
|
|
|
|
<version>${commons-fileupload2.version}</version>
|
|
|
|
|
|
</dependency>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
|
|
<version>${groovy.version}</version>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2024-01-02 11:09:22 +08:00
|
|
|
|
<groupId>org.connectbot</groupId>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<artifactId>jbcrypt</artifactId>
|
2024-01-02 11:09:22 +08:00
|
|
|
|
<version>1.0.2</version>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<!-- Groovy shell uses this, but it doesn't declare the dependency -->
|
|
|
|
|
|
<groupId>org.fusesource.jansi</groupId>
|
|
|
|
|
|
<artifactId>jansi</artifactId>
|
|
|
|
|
|
<version>1.11</version>
|
2021-12-06 13:03:00 +08:00
|
|
|
|
</dependency>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>annotation-indexer</artifactId>
|
2024-10-03 02:49:02 +08:00
|
|
|
|
<version>1.18</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
2021-12-31 23:52:48 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>commons-jexl</artifactId>
|
|
|
|
|
|
<version>1.1-jenkins-20111212</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<artifactId>crypto-util</artifactId>
|
2024-10-03 02:53:28 +08:00
|
|
|
|
<version>1.10</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>memory-monitor</artifactId>
|
2024-10-03 02:57:54 +08:00
|
|
|
|
<version>1.13</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>symbol-annotation</artifactId>
|
2024-10-03 03:08:44 +08:00
|
|
|
|
<version>1.25</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>task-reactor</artifactId>
|
2024-10-03 03:11:53 +08:00
|
|
|
|
<version>1.9</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci</groupId>
|
|
|
|
|
|
<artifactId>version-number</artifactId>
|
2024-10-03 03:17:21 +08:00
|
|
|
|
<version>1.12</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jenkins-ci.main</groupId>
|
|
|
|
|
|
<artifactId>remoting</artifactId>
|
|
|
|
|
|
<version>${remoting.version}</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
|
<version>1.0.19</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jvnet.hudson</groupId>
|
|
|
|
|
|
<artifactId>commons-jelly-tags-define</artifactId>
|
2024-09-04 05:59:04 +08:00
|
|
|
|
<version>1.1-jenkins-20240903</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jvnet.localizer</groupId>
|
|
|
|
|
|
<artifactId>localizer</artifactId>
|
|
|
|
|
|
<version>1.31</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.jvnet.robust-http-client</groupId>
|
|
|
|
|
|
<artifactId>robust-http-client</artifactId>
|
|
|
|
|
|
<version>1.2</version>
|
|
|
|
|
|
</dependency>
|
2021-11-23 18:00:58 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.jvnet.winp</groupId>
|
|
|
|
|
|
<artifactId>winp</artifactId>
|
2024-08-08 04:07:20 +08:00
|
|
|
|
<version>1.31</version>
|
2021-11-23 18:00:58 +08:00
|
|
|
|
</dependency>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.kohsuke</groupId>
|
|
|
|
|
|
<artifactId>access-modifier-annotation</artifactId>
|
|
|
|
|
|
<version>${access-modifier.version}</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.kohsuke</groupId>
|
|
|
|
|
|
<artifactId>windows-package-checker</artifactId>
|
|
|
|
|
|
<version>1.2</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.kohsuke.jinterop</groupId>
|
|
|
|
|
|
<artifactId>j-interop</artifactId>
|
|
|
|
|
|
<version>2.0.8-kohsuke-1</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
2022-07-07 23:23:47 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.kohsuke.metainf-services</groupId>
|
|
|
|
|
|
<artifactId>metainf-services</artifactId>
|
2023-06-29 20:04:14 +08:00
|
|
|
|
<version>1.11</version>
|
2022-07-07 23:23:47 +08:00
|
|
|
|
</dependency>
|
2021-12-31 23:52:48 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.kohsuke.stapler</groupId>
|
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
2024-04-30 09:40:27 +08:00
|
|
|
|
<version>2.4-jenkins-7</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.kohsuke.stapler</groupId>
|
2020-11-04 16:55:47 +08:00
|
|
|
|
<artifactId>stapler</artifactId>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
<version>${stapler.version}</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.kohsuke.stapler</groupId>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<artifactId>stapler-adjunct-codemirror</artifactId>
|
|
|
|
|
|
<version>1.3</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.kohsuke.stapler</groupId>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<artifactId>stapler-groovy</artifactId>
|
|
|
|
|
|
<version>${stapler.version}</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
2024-10-05 18:34:09 +08:00
|
|
|
|
<!-- Override the outdated managed dependency on asm in guice-parent -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.ow2.asm</groupId>
|
|
|
|
|
|
<artifactId>asm</artifactId>
|
2024-10-06 22:21:12 +08:00
|
|
|
|
<version>9.7.1</version>
|
2024-10-05 18:34:09 +08:00
|
|
|
|
</dependency>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<groupId>org.samba.jcifs</groupId>
|
|
|
|
|
|
<artifactId>jcifs</artifactId>
|
|
|
|
|
|
<version>1.3.18-kohsuke-1</version>
|
2020-05-22 17:41:44 +08:00
|
|
|
|
</dependency>
|
2020-07-20 15:38:47 +08:00
|
|
|
|
<dependency>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<!-- provided by jcl-over-slf4j -->
|
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2024-08-20 07:57:22 +08:00
|
|
|
|
<version>1.3.4</version>
|
2022-03-13 02:06:05 +08:00
|
|
|
|
<scope>provided</scope>
|
2020-07-20 15:38:47 +08:00
|
|
|
|
</dependency>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<!-- override the default to keep the dependencyManagement intact -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
|
|
<artifactId>flatten-maven-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<updatePomFile>true</updatePomFile>
|
|
|
|
|
|
<outputDirectory>${project.build.directory}</outputDirectory>
|
|
|
|
|
|
<flattenedPomFilename>${project.artifactId}-${project.version}.pom</flattenedPomFilename>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>flatten</id>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>flatten</goal>
|
|
|
|
|
|
</goals>
|
2021-12-31 23:52:48 +08:00
|
|
|
|
<phase>process-resources</phase>
|
2019-08-22 23:06:11 +08:00
|
|
|
|
<configuration>
|
|
|
|
|
|
<flattenMode>bom</flattenMode>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|