Skip to content

Commit ebf8d90

Browse files
authored
Add URL Trigger to the managed set (#4705)
1 parent 264d787 commit ebf8d90

File tree

2 files changed

+60
-24
lines changed

2 files changed

+60
-24
lines changed

bom-weekly/pom.xml

+20
Original file line numberDiff line numberDiff line change
@@ -1024,6 +1024,16 @@
10241024
<artifactId>embeddable-build-status</artifactId>
10251025
<version>548.v5653c6e28c41</version>
10261026
</dependency>
1027+
<dependency>
1028+
<groupId>org.jenkins-ci.plugins</groupId>
1029+
<artifactId>envinject</artifactId>
1030+
<version>2.926.v69c9b_3896a_96</version>
1031+
</dependency>
1032+
<dependency>
1033+
<groupId>org.jenkins-ci.plugins</groupId>
1034+
<artifactId>envinject-api</artifactId>
1035+
<version>1.235.va_14c74f8f487</version>
1036+
</dependency>
10271037
<dependency>
10281038
<groupId>org.jenkins-ci.plugins</groupId>
10291039
<artifactId>external-monitor-job</artifactId>
@@ -1529,6 +1539,11 @@
15291539
<artifactId>unique-id</artifactId>
15301540
<version>2.113.va_25f74db_66a_b_</version>
15311541
</dependency>
1542+
<dependency>
1543+
<groupId>org.jenkins-ci.plugins</groupId>
1544+
<artifactId>urltrigger</artifactId>
1545+
<version>1.05</version>
1546+
</dependency>
15321547
<dependency>
15331548
<groupId>org.jenkins-ci.plugins</groupId>
15341549
<artifactId>variant</artifactId>
@@ -1554,6 +1569,11 @@
15541569
<artifactId>ws-cleanup</artifactId>
15551570
<version>0.48</version>
15561571
</dependency>
1572+
<dependency>
1573+
<groupId>org.jenkins-ci.plugins</groupId>
1574+
<artifactId>xtrigger-api</artifactId>
1575+
<version>1.2</version>
1576+
</dependency>
15571577
<dependency>
15581578
<groupId>org.jenkins-ci.plugins.aws-java-sdk</groupId>
15591579
<artifactId>aws-java-sdk-api-gateway</artifactId>

sample-plugin/pom.xml

+40-24
Original file line numberDiff line numberDiff line change
@@ -29,30 +29,6 @@
2929
</dependencies>
3030
</dependencyManagement>
3131
<dependencies>
32-
<dependency>
33-
<groupId>io.jenkins.plugins</groupId>
34-
<artifactId>byte-buddy-api</artifactId>
35-
</dependency>
36-
<dependency>
37-
<groupId>io.jenkins.plugins</groupId>
38-
<artifactId>eddsa-api</artifactId>
39-
</dependency>
40-
<dependency>
41-
<groupId>io.jenkins.plugins</groupId>
42-
<artifactId>pipeline-graph-view</artifactId>
43-
</dependency>
44-
<dependency>
45-
<groupId>org.jenkins-ci.plugins</groupId>
46-
<artifactId>authorize-project</artifactId>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.jenkins-ci.plugins</groupId>
50-
<artifactId>jobcacher</artifactId>
51-
</dependency>
52-
<dependency>
53-
<groupId>org.jenkins-ci.plugins</groupId>
54-
<artifactId>jsch</artifactId>
55-
</dependency>
5632
<dependency>
5733
<groupId>org.jenkins-ci.plugins.workflow</groupId>
5834
<artifactId>workflow-step-api</artifactId>
@@ -252,6 +228,11 @@
252228
<artifactId>bootstrap5-api</artifactId>
253229
<scope>test</scope>
254230
</dependency>
231+
<dependency>
232+
<groupId>io.jenkins.plugins</groupId>
233+
<artifactId>byte-buddy-api</artifactId>
234+
<scope>test</scope>
235+
</dependency>
255236
<dependency>
256237
<groupId>io.jenkins.plugins</groupId>
257238
<artifactId>checks-api</artifactId>
@@ -327,6 +308,11 @@
327308
<artifactId>echarts-api</artifactId>
328309
<scope>test</scope>
329310
</dependency>
311+
<dependency>
312+
<groupId>io.jenkins.plugins</groupId>
313+
<artifactId>eddsa-api</artifactId>
314+
<scope>test</scope>
315+
</dependency>
330316
<dependency>
331317
<groupId>io.jenkins.plugins</groupId>
332318
<artifactId>emoji-symbols-api</artifactId>
@@ -508,6 +494,11 @@
508494
<artifactId>oss-symbols-api</artifactId>
509495
<scope>test</scope>
510496
</dependency>
497+
<dependency>
498+
<groupId>io.jenkins.plugins</groupId>
499+
<artifactId>pipeline-graph-view</artifactId>
500+
<scope>test</scope>
501+
</dependency>
511502
<dependency>
512503
<groupId>io.jenkins.plugins</groupId>
513504
<artifactId>plugin-util-api</artifactId>
@@ -718,6 +709,11 @@
718709
<artifactId>authentication-tokens</artifactId>
719710
<scope>test</scope>
720711
</dependency>
712+
<dependency>
713+
<groupId>org.jenkins-ci.plugins</groupId>
714+
<artifactId>authorize-project</artifactId>
715+
<scope>test</scope>
716+
</dependency>
721717
<dependency>
722718
<groupId>org.jenkins-ci.plugins</groupId>
723719
<artifactId>aws-credentials</artifactId>
@@ -900,6 +896,11 @@
900896
<artifactId>email-ext</artifactId>
901897
<scope>test</scope>
902898
</dependency>
899+
<dependency>
900+
<groupId>org.jenkins-ci.plugins</groupId>
901+
<artifactId>envinject</artifactId>
902+
<scope>test</scope>
903+
</dependency>
903904
<dependency>
904905
<groupId>org.jenkins-ci.plugins</groupId>
905906
<artifactId>external-monitor-job</artifactId>
@@ -1042,6 +1043,16 @@
10421043
<artifactId>job-dsl</artifactId>
10431044
<scope>test</scope>
10441045
</dependency>
1046+
<dependency>
1047+
<groupId>org.jenkins-ci.plugins</groupId>
1048+
<artifactId>jobcacher</artifactId>
1049+
<scope>test</scope>
1050+
</dependency>
1051+
<dependency>
1052+
<groupId>org.jenkins-ci.plugins</groupId>
1053+
<artifactId>jsch</artifactId>
1054+
<scope>test</scope>
1055+
</dependency>
10451056
<dependency>
10461057
<groupId>org.jenkins-ci.plugins</groupId>
10471058
<artifactId>jsoup</artifactId>
@@ -1330,6 +1341,11 @@
13301341
<artifactId>unique-id</artifactId>
13311342
<scope>test</scope>
13321343
</dependency>
1344+
<dependency>
1345+
<groupId>org.jenkins-ci.plugins</groupId>
1346+
<artifactId>urltrigger</artifactId>
1347+
<scope>test</scope>
1348+
</dependency>
13331349
<dependency>
13341350
<groupId>org.jenkins-ci.plugins</groupId>
13351351
<artifactId>versioncolumn</artifactId>

0 commit comments

Comments
 (0)