|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<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"> |
3 |
| - <modelVersion>4.0.0</modelVersion> |
4 |
| - |
5 |
| - <parent> |
6 |
| - <groupId>com.splunk.splunkins</groupId> |
7 |
| - <artifactId>pom</artifactId> |
8 |
| - <version>1.10.0-SNAPSHOT</version> |
9 |
| - </parent> |
10 |
| - |
11 |
| - <artifactId>splunk-devops-extend</artifactId> |
12 |
| - <packaging>hpi</packaging> |
13 |
| - |
14 |
| - <name>Splunk Plugin Extension</name> |
15 |
| - <description>Support Extracting Pipeline Stage Node</description> |
16 |
| - <url>https://github.com/jenkinsci/splunk-devops-plugin/blob/master/doc/splunk-devops-extend-usage.md</url> |
17 |
| - <licenses> |
18 |
| - <license> |
19 |
| - <name>MIT License</name> |
20 |
| - <url>http://opensource.org/licenses/MIT</url> |
21 |
| - </license> |
22 |
| - </licenses> |
23 |
| - <developers> |
24 |
| - <developer> |
25 |
| - <id>fengxx</id> |
26 |
| - <name>Ted Xiao</name> |
27 |
| - <email>xiao.xj@outlook.com</email> |
28 |
| - </developer> |
29 |
| - </developers> |
30 |
| - <properties> |
31 |
| - <useBeta>true</useBeta> |
32 |
| - </properties> |
33 |
| - <dependencies> |
34 |
| - <dependency> |
35 |
| - <groupId>${project.groupId}</groupId> |
36 |
| - <artifactId>splunk-devops</artifactId> |
37 |
| - <version>${project.version}</version> |
38 |
| - </dependency> |
39 |
| - <dependency> |
40 |
| - <groupId>org.jenkins-ci.plugins.pipeline-stage-view</groupId> |
41 |
| - <artifactId>pipeline-rest-api</artifactId> |
42 |
| - <version>2.8</version> |
43 |
| - </dependency> |
44 |
| - <dependency> |
45 |
| - <groupId>${project.groupId}</groupId> |
46 |
| - <artifactId>splunk-devops</artifactId> |
47 |
| - <version>${project.version}</version> |
48 |
| - <type>test-jar</type> |
49 |
| - <scope>test</scope> |
50 |
| - </dependency> |
51 |
| - <dependency> |
52 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
53 |
| - <artifactId>workflow-durable-task-step</artifactId> |
54 |
| - <version>2.9</version> |
55 |
| - <scope>test</scope> |
56 |
| - </dependency> |
57 |
| - <dependency> |
58 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
59 |
| - <artifactId>workflow-api</artifactId> |
60 |
| - <version>1165.v02c3db_a_6b_e36</version> |
61 |
| - <!--TaskListenerDecorator API beta feature--> |
62 |
| - </dependency> |
63 |
| - <dependency> |
64 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
65 |
| - <artifactId>workflow-job</artifactId> |
66 |
| - <version>2.41</version> |
67 |
| - </dependency> |
68 |
| - <dependency> |
69 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
70 |
| - <artifactId>workflow-step-api</artifactId> |
71 |
| - <version>625.vd896b_f445a_f8</version> |
72 |
| - </dependency> |
73 |
| - <dependency> |
74 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
75 |
| - <artifactId>workflow-cps</artifactId> |
76 |
| - <version>2648.2651.v230593e03e9f</version> |
77 |
| - </dependency> |
78 |
| - <dependency> |
79 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
80 |
| - <artifactId>workflow-support</artifactId> |
81 |
| - <version>3.8</version> |
82 |
| - </dependency> |
83 |
| - <dependency> |
84 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
85 |
| - <artifactId>workflow-basic-steps</artifactId> |
86 |
| - <version>2.24</version> |
87 |
| - <scope>test</scope> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
91 |
| - <artifactId>workflow-multibranch</artifactId> |
92 |
| - <version>711.vdfef37cda_816</version> |
93 |
| - <scope>test</scope> |
94 |
| - </dependency> |
95 |
| - <dependency> |
96 |
| - <!-- transit dependency of workflow-cps --> |
97 |
| - <groupId>org.jenkins-ci.ui</groupId> |
98 |
| - <artifactId>jquery-detached</artifactId> |
99 |
| - <version>1.2.1</version> |
100 |
| - <scope>test</scope> |
101 |
| - </dependency> |
102 |
| - <dependency> |
103 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
104 |
| - <artifactId>junit</artifactId> |
105 |
| - <version>1.47</version> |
106 |
| - <scope>test</scope> |
107 |
| - </dependency> |
108 |
| - <dependency> |
109 |
| - <groupId>javax.mail</groupId> |
110 |
| - <artifactId>mail</artifactId> |
111 |
| - <version>1.4.4</version> |
112 |
| - <scope>test</scope> |
113 |
| - </dependency> |
114 |
| - </dependencies> |
115 |
| -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>com.splunk.splunkins</groupId> |
| 7 | + <artifactId>pom</artifactId> |
| 8 | + <version>1.10.0-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>splunk-devops-extend</artifactId> |
| 12 | + <packaging>hpi</packaging> |
| 13 | + |
| 14 | + <name>Splunk Plugin Extension</name> |
| 15 | + <description>Support Extracting Pipeline Stage Node</description> |
| 16 | + <url>https://github.com/jenkinsci/splunk-devops-plugin/blob/master/doc/splunk-devops-extend-usage.md</url> |
| 17 | + <licenses> |
| 18 | + <license> |
| 19 | + <name>MIT License</name> |
| 20 | + <url>http://opensource.org/licenses/MIT</url> |
| 21 | + </license> |
| 22 | + </licenses> |
| 23 | + <developers> |
| 24 | + <developer> |
| 25 | + <id>fengxx</id> |
| 26 | + <name>Ted Xiao</name> |
| 27 | + <email>xiao.xj@outlook.com</email> |
| 28 | + </developer> |
| 29 | + </developers> |
| 30 | + <properties> |
| 31 | + <useBeta>true</useBeta> |
| 32 | + </properties> |
| 33 | + <dependencies> |
| 34 | + <dependency> |
| 35 | + <groupId>${project.groupId}</groupId> |
| 36 | + <artifactId>splunk-devops</artifactId> |
| 37 | + <version>${project.version}</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>org.jenkins-ci.plugins.pipeline-stage-view</groupId> |
| 41 | + <artifactId>pipeline-rest-api</artifactId> |
| 42 | + <version>2.8</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>${project.groupId}</groupId> |
| 46 | + <artifactId>splunk-devops</artifactId> |
| 47 | + <version>${project.version}</version> |
| 48 | + <type>test-jar</type> |
| 49 | + <scope>test</scope> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 53 | + <artifactId>workflow-durable-task-step</artifactId> |
| 54 | + <version>2.39</version> |
| 55 | + <scope>test</scope> |
| 56 | + </dependency> |
| 57 | + <dependency> |
| 58 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 59 | + <artifactId>workflow-api</artifactId> |
| 60 | + <version>1165.v02c3db_a_6b_e36</version> |
| 61 | + <!--TaskListenerDecorator API beta feature--> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 65 | + <artifactId>workflow-job</artifactId> |
| 66 | + <version>2.41</version> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 70 | + <artifactId>workflow-step-api</artifactId> |
| 71 | + <version>625.vd896b_f445a_f8</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 75 | + <artifactId>workflow-cps</artifactId> |
| 76 | + <version>2648.2651.v230593e03e9f</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 80 | + <artifactId>workflow-support</artifactId> |
| 81 | + <version>813.vb_d7c3d2984a_0</version> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 85 | + <artifactId>workflow-basic-steps</artifactId> |
| 86 | + <version>2.24</version> |
| 87 | + <scope>test</scope> |
| 88 | + </dependency> |
| 89 | + <dependency> |
| 90 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 91 | + <artifactId>workflow-multibranch</artifactId> |
| 92 | + <version>711.vdfef37cda_816</version> |
| 93 | + <scope>test</scope> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <!-- transit dependency of workflow-cps --> |
| 97 | + <groupId>org.jenkins-ci.ui</groupId> |
| 98 | + <artifactId>jquery-detached</artifactId> |
| 99 | + <version>1.2.1</version> |
| 100 | + <scope>test</scope> |
| 101 | + </dependency> |
| 102 | + <dependency> |
| 103 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 104 | + <artifactId>junit</artifactId> |
| 105 | + <version>1.47</version> |
| 106 | + <scope>test</scope> |
| 107 | + </dependency> |
| 108 | + <dependency> |
| 109 | + <groupId>javax.mail</groupId> |
| 110 | + <artifactId>mail</artifactId> |
| 111 | + <version>1.4.4</version> |
| 112 | + <scope>test</scope> |
| 113 | + </dependency> |
| 114 | + <dependency> |
| 115 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 116 | + <artifactId>structs</artifactId> |
| 117 | + <version>308.v852b473a2b8c</version> |
| 118 | + <scope>test</scope> |
| 119 | + </dependency> |
| 120 | + <dependency> |
| 121 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 122 | + <artifactId>scm-api</artifactId> |
| 123 | + <version>608.vfa_f971c5a_a_e9</version> |
| 124 | + <scope>test</scope> |
| 125 | + </dependency> |
| 126 | + <dependency> |
| 127 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 128 | + <artifactId>pipeline-build-step</artifactId> |
| 129 | + <version>2.18</version> |
| 130 | + <scope>test</scope> |
| 131 | + </dependency> |
| 132 | + </dependencies> |
| 133 | +</project> |
0 commit comments