forked from orrc/google-play-android-publisher-plugin
-
Notifications
You must be signed in to change notification settings - Fork 48
/
pom.xml
219 lines (195 loc) · 6.94 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<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>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.2</version>
<relativePath />
</parent>
<properties>
<jenkins.version>2.222.4</jenkins.version>
<jenkins.bom.artifactId>2.222.x</jenkins.bom.artifactId>
<jenkins.bom.version>29</jenkins.bom.version>
<java.level>8</java.level>
</properties>
<artifactId>google-play-android-publisher</artifactId>
<version>4.3-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>Google Play Android Publisher Plugin</name>
<url>https://github.com/jenkinsci/google-play-android-publisher-plugin</url>
<description>Enables Jenkins to manage and upload Android app files (AAB or APK) to Google Play.</description>
<developers>
<developer>
<id>orrc</id>
<name>Christopher Orr</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>MIT License</name>
<url>http://opensource.org/licenses/MIT</url>
</license>
</licenses>
<dependencies>
<!-- There are various transitive dependencies on these APIs,
so include them via the Jenkins plugins, to help avoid
conflicts and multiple copies of the same libraries in Jenkins -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>apache-httpcomponents-client-4-api</artifactId>
<version>4.5.10-2.0</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>jackson2-api</artifactId>
<version>2.12.3</version>
</dependency>
<!-- Official bindings for the Android Publisher API -->
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-androidpublisher</artifactId>
<version>v3-rev142-1.25.0</version>
</dependency>
<!-- To parse the APK file format -->
<dependency>
<groupId>net.dongliu</groupId>
<artifactId>apk-parser</artifactId>
<version>2.6.10</version>
</dependency>
<!-- To parse the AAB file format -->
<dependency>
<groupId>com.github.orrc</groupId>
<artifactId>android-bundle-basics-lib</artifactId>
<version>v5</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>google-oauth-plugin</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>token-macro</artifactId>
<version>2.12</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>structs</artifactId>
</dependency>
<!-- Pinning these versions as various other dependencies rely on them -->
<dependency>
<groupId>com.google.http-client</groupId>
<artifactId>google-http-client</artifactId>
<version>1.25.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.12.0</version>
</dependency>
<!-- Testing -->
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.3.3</version>
<scope>test</scope>
</dependency>
<!-- Install mock agent plugin when running locally, as it's very useful -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>mock-slave</artifactId>
<version>1.13</version>
<scope>test</scope>
</dependency>
<!-- Install Folders, so we can test credentials and jobs inside folders -->
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>cloudbees-folder</artifactId>
<version>6.15</version>
<scope>test</scope>
</dependency>
<!-- Install Pipeline when running locally, so we can test Pipelines -->
<!-- Versions don't need to be supplied, as they come from the BOM below -->
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-basic-steps</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-cps</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-durable-task-step</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins.workflow</groupId>
<artifactId>workflow-job</artifactId>
<scope>test</scope>
</dependency>
<!-- Also add the Declarative Pipeline plugin, which isn't included in the BOM… -->
<dependency>
<groupId>org.jenkinsci.plugins</groupId>
<artifactId>pipeline-model-definition</artifactId>
<version>1.6.0</version>
<scope>test</scope>
</dependency>
<!-- Pinning these versions as various other dependencies rely on them -->
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<!-- Simplifies inclusion of plugins: https://github.com/jenkinsci/bom -->
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-${jenkins.bom.artifactId}</artifactId>
<version>${jenkins.bom.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<repositories>
<!-- Contains Jenkins artifacts and seems to cache requested artifacts from Maven Central -->
<repository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</repository>
<!-- For Android bundle lib -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<!-- For Android bundle lib dependencies -->
<repository>
<id>google</id>
<url>https://maven.google.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>repo.jenkins-ci.org</id>
<url>https://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<scm>
<connection>scm:git:git://github.com/jenkinsci/google-play-android-publisher-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/google-play-android-publisher-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/google-play-android-publisher-plugin</url>
<tag>HEAD</tag>
</scm>
</project>