|
4 | 4 | <parent>
|
5 | 5 | <groupId>org.jenkins-ci.plugins</groupId>
|
6 | 6 | <artifactId>plugin</artifactId>
|
7 |
| - <version>2.37</version> |
| 7 | + <version>3.9</version> |
8 | 8 | </parent>
|
9 | 9 |
|
10 | 10 | <artifactId>xunit</artifactId>
|
|
41 | 41 |
|
42 | 42 | <properties>
|
43 | 43 | <dtkit.frmk.version>2.0.0</dtkit.frmk.version>
|
44 |
| - <xerces.version>2.9.1</xerces.version> |
45 | 44 | <saxon.version>9.1.0.8</saxon.version>
|
46 | 45 | <dry.run.version>0.1</dry.run.version>
|
47 | 46 | <xmlunit.version>1.6</xmlunit.version>
|
48 | 47 | <mockito.version>2.17.0</mockito.version>
|
49 | 48 | <jenkins.version>1.651.3</jenkins.version>
|
| 49 | + <java.level>7</java.level> |
50 | 50 | </properties>
|
51 | 51 |
|
52 | 52 | <repositories>
|
|
63 | 63 | </pluginRepository>
|
64 | 64 | </pluginRepositories>
|
65 | 65 |
|
| 66 | + <dependencyManagement> |
| 67 | + <dependencies> |
| 68 | + <dependency> |
| 69 | + <groupId>org.jenkins-ci</groupId> |
| 70 | + <artifactId>annotation-indexer</artifactId> |
| 71 | + <version>1.9</version> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 75 | + <artifactId>workflow-api</artifactId> |
| 76 | + <version>2.19</version> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 80 | + <artifactId>workflow-step-api</artifactId> |
| 81 | + <version>2.12</version> |
| 82 | + </dependency> |
| 83 | + </dependencies> |
| 84 | + </dependencyManagement> |
| 85 | + |
66 | 86 | <dependencies>
|
67 | 87 | <dependency>
|
68 | 88 | <groupId>org.jenkins-ci.lib.dtkit</groupId>
|
|
75 | 95 | </exclusion>
|
76 | 96 | </exclusions>
|
77 | 97 | </dependency>
|
78 |
| - |
79 | 98 | <dependency>
|
80 | 99 | <groupId>org.jenkins-ci.lib.dtkit</groupId>
|
81 | 100 | <artifactId>dtkit-metrics-util</artifactId>
|
|
87 | 106 | </exclusion>
|
88 | 107 | </exclusions>
|
89 | 108 | </dependency>
|
90 |
| - |
91 | 109 | <dependency>
|
92 | 110 | <groupId>org.jenkins-ci.lib.dtkit</groupId>
|
93 | 111 | <artifactId>dtkit-metrics-hudson-api</artifactId>
|
|
100 | 118 | <version>${dry.run.version}</version>
|
101 | 119 | </dependency>
|
102 | 120 |
|
103 |
| - |
104 |
| - <dependency> |
105 |
| - <groupId>xmlunit</groupId> |
106 |
| - <artifactId>xmlunit</artifactId> |
107 |
| - <version>${xmlunit.version}</version> |
108 |
| - <scope>test</scope> |
109 |
| - </dependency> |
110 |
| - |
111 |
| - <dependency> |
112 |
| - <groupId>org.mockito</groupId> |
113 |
| - <artifactId>mockito-core</artifactId> |
114 |
| - <version>${mockito.version}</version> |
115 |
| - <scope>test</scope> |
116 |
| - </dependency> |
117 |
| - |
118 | 121 | <dependency>
|
119 | 122 | <groupId>net.sourceforge.saxon</groupId>
|
120 | 123 | <artifactId>saxon</artifactId>
|
121 | 124 | <version>${saxon.version}</version>
|
122 | 125 | </dependency>
|
123 |
| - |
124 | 126 | <dependency>
|
125 | 127 | <groupId>net.sourceforge.saxon</groupId>
|
126 | 128 | <artifactId>saxon</artifactId>
|
127 | 129 | <version>${saxon.version}</version>
|
128 | 130 | <classifier>s9api</classifier>
|
129 | 131 | </dependency>
|
130 |
| - |
131 | 132 | <dependency>
|
132 | 133 | <groupId>net.sourceforge.saxon</groupId>
|
133 | 134 | <artifactId>saxon</artifactId>
|
|
142 | 143 | </dependency>
|
143 | 144 |
|
144 | 145 | <dependency>
|
145 |
| - <groupId>org.jenkins-ci.plugins.workflow</groupId> |
146 |
| - <artifactId>workflow-aggregator</artifactId> |
147 |
| - <version>1.7</version> |
| 146 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 147 | + <artifactId>structs</artifactId> |
| 148 | + <version>1.13</version> |
| 149 | + </dependency> |
| 150 | + |
| 151 | + <dependency> |
| 152 | + <groupId>xmlunit</groupId> |
| 153 | + <artifactId>xmlunit</artifactId> |
| 154 | + <version>${xmlunit.version}</version> |
| 155 | + <scope>test</scope> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>org.mockito</groupId> |
| 159 | + <artifactId>mockito-core</artifactId> |
| 160 | + <version>${mockito.version}</version> |
148 | 161 | <scope>test</scope>
|
149 | 162 | </dependency>
|
150 | 163 |
|
| 164 | + <!-- dependencies to get pipeline work with Jenkins 1.x --> |
| 165 | + <dependency> |
| 166 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 167 | + <artifactId>workflow-cps</artifactId> |
| 168 | + <version>2.32</version> |
| 169 | + <scope>test</scope> |
| 170 | + </dependency> |
| 171 | + <dependency> |
| 172 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 173 | + <artifactId>workflow-job</artifactId> |
| 174 | + <version>2.11</version> |
| 175 | + <scope>test</scope> |
| 176 | + </dependency> |
| 177 | + <dependency> |
| 178 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 179 | + <artifactId>workflow-durable-task-step</artifactId> |
| 180 | + <version>2.13</version> |
| 181 | + <scope>test</scope> |
| 182 | + </dependency> |
| 183 | + <dependency> |
| 184 | + <groupId>org.jenkins-ci.plugins.workflow</groupId> |
| 185 | + <artifactId>workflow-basic-steps</artifactId> |
| 186 | + <version>2.6</version> |
| 187 | + <scope>test</scope> |
| 188 | + </dependency> |
151 | 189 | </dependencies>
|
152 | 190 |
|
153 | 191 | <scm>
|
|
157 | 195 | </scm>
|
158 | 196 |
|
159 | 197 | <build>
|
160 |
| - <pluginManagement> |
161 |
| - <plugins> |
162 |
| - <plugin> |
163 |
| - <groupId>org.codehaus.mojo</groupId> |
164 |
| - <artifactId>findbugs-maven-plugin</artifactId> |
165 |
| - <configuration> |
166 |
| - <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> |
167 |
| - </configuration> |
168 |
| - </plugin> |
169 |
| - </plugins> |
170 |
| - </pluginManagement> |
| 198 | + <pluginManagement> |
| 199 | + <plugins> |
| 200 | + <plugin> |
| 201 | + <groupId>org.codehaus.mojo</groupId> |
| 202 | + <artifactId>findbugs-maven-plugin</artifactId> |
| 203 | + <configuration> |
| 204 | + <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile> |
| 205 | + </configuration> |
| 206 | + </plugin> |
| 207 | + </plugins> |
| 208 | + </pluginManagement> |
171 | 209 | <plugins>
|
172 | 210 | <plugin>
|
173 | 211 | <artifactId>maven-dependency-plugin</artifactId>
|
|
0 commit comments