-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
95 lines (93 loc) · 4.09 KB
/
pom.xml
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Inspired by: https://github.com/jenkinsci/bom -->
<groupId>io.jenkins.tools.bom</groupId>
<!--
The version in the artifactId is related to the jenkins.version given later.
We have jenkins.version = 2.387.3, so we use `bom-2.387.x`.
The not-very-obvious `version` value is found in this table:
https://github.com/jenkinsci/bom?tab=readme-ov-file#depending-on-older-versions
-->
<artifactId>bom-2.452.x</artifactId>
<version>3358.vea_fa_1f41504d</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.plugins</groupId>
<artifactId>gson-api</artifactId>
<version>2.11.0-41.v019fcf6125dc</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>retrofit</artifactId>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>com.squareup.retrofit2</groupId>
<artifactId>converter-gson</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<!-- See https://github.com/jenkinsci/plugin-pom/releases for available versions -->
<version>4.87</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>zscan-upload</artifactId>
<version>2.2.0</version>
<packaging>hpi</packaging>
<properties>
<!--
Take a look at the developer documentation for the baseline version to use
https://www.jenkins.io/doc/developer/plugin-development/choosing-jenkins-baseline/#currently-recommended-versions
At the moment, the Jenkins releases 2.440.3 and 2.452.4 make good core dependencies.
You could also consider 2.462.1 if there are specific reasons, like new features, to want something newer.
-->
<jenkins.version>2.452.4</jenkins.version>
</properties>
<name>Upload to zScan</name>
<description>This plugin uploads build artifacts to Zimperium zScan for app analysis</description>
<url>https://github.com/Zimperium/zscan-plugin-jenkins</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<scm>
<url>https://github.com/Zimperium/zscan-plugin-jenkins</url>
<connection>scm:git:https://github.com/Zimperium/zscan-plugin-jenkins</connection>
<developerConnection>scm:git:https://github.com/Zimperium/zscan-plugin-jenkins</developerConnection>
</scm>
<!-- Assuming you want to host on @jenkinsci:
<url>https://wiki.jenkins.io/display/JENKINS/TODO+Plugin</url>
<scm>
<connection>scm:git:git://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/${project.artifactId}-plugin</url>
</scm>
-->
<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
</project>