File tree Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Expand file tree Collapse file tree 3 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ pipeline {
2
+ agent none
3
+ stages {
4
+ stage(' Build JDK11' ) {
5
+ agent { docker ' openjdk:11-jdk' }
6
+ steps {
7
+ sh ' ./mvnw test -fae -Dcheckstyle.skip'
8
+ }
9
+ }
10
+ }
11
+ }
Original file line number Diff line number Diff line change 236
236
<versions-maven-plugin .version>2.7</versions-maven-plugin .version>
237
237
<xml-maven-plugin .version>1.0.2</xml-maven-plugin .version>
238
238
<flatten-maven-plugin .version>1.1.0</flatten-maven-plugin .version>
239
+ <scope .agent.version>0.1.7-beta.11</scope .agent.version>
240
+
239
241
</properties >
240
242
<dependencyManagement >
241
243
<dependencies >
3233
3235
</dependency >
3234
3236
</dependencies >
3235
3237
</dependencyManagement >
3238
+ <dependencies >
3239
+ <dependency >
3240
+ <groupId >com.undefinedlabs.scope</groupId >
3241
+ <artifactId >scope-agent</artifactId >
3242
+ <version >${scope.agent.version} </version >
3243
+ <scope >provided</scope >
3244
+ </dependency >
3245
+ </dependencies >
3236
3246
<build >
3237
3247
<pluginManagement >
3238
3248
<plugins >
Original file line number Diff line number Diff line change 496
496
<java .security.egd>file:/dev/./urandom</java .security.egd>
497
497
<java .awt.headless>true</java .awt.headless>
498
498
</systemPropertyVariables >
499
- <argLine >-Xmx1024m</argLine >
499
+ <argLine >-Xmx1024m -javaagent: ${settings.localRepository} /com/undefinedlabs/scope/scope-agent/ ${scope.agent.version} /scope-agent- ${scope.agent.version} .jar </argLine >
500
500
<trimStackTrace >false</trimStackTrace >
501
501
<redirectTestOutputToFile >true</redirectTestOutputToFile >
502
502
<runOrder >alphabetical</runOrder >
You can’t perform that action at this time.
0 commit comments