File tree 7 files changed +44
-9
lines changed
spring-boot-tests/spring-boot-smoke-tests
7 files changed +44
-9
lines changed Original file line number Diff line number Diff line change
1
+ version : " 1"
2
+ rules :
3
+ - base : master
4
+ upstream : spring-boot:master
5
+ mergeMethod : rebase
Original file line number Diff line number Diff line change
1
+ pipeline {
2
+ agent none
3
+ stages {
4
+ stage(' Build JDK8' ) {
5
+ agent { docker ' openjdk:8-jdk' }
6
+ steps {
7
+ sh ' ./mvnw clean verify -U -fae -Pfast'
8
+ }
9
+ }
10
+ }
11
+
12
+ post {
13
+ always {
14
+ node(' master' ) {
15
+ archiveArtifacts artifacts : ' **/scope_*.log'
16
+ sh ' rm -f scope_*.log'
17
+ }
18
+ }
19
+ }
20
+ }
Original file line number Diff line number Diff line change 29
29
</properties >
30
30
<build >
31
31
<plugins >
32
- <plugin >
32
+ <!-- < plugin>
33
33
<groupId>org.apache.maven.plugins</groupId>
34
34
<artifactId>maven-checkstyle-plugin</artifactId>
35
35
<version>3.0.0</version>
85
85
<inherited>false</inherited>
86
86
</execution>
87
87
</executions>
88
- </plugin >
88
+ </plugin>-->
89
89
<plugin >
90
90
<groupId >io.spring.javaformat</groupId >
91
91
<artifactId >spring-javaformat-maven-plugin</artifactId >
222
222
<configuration >
223
223
<lifecycleMappingMetadata >
224
224
<pluginExecutions >
225
- <pluginExecution >
225
+ <!-- < pluginExecution>
226
226
<pluginExecutionFilter>
227
227
<groupId>org.apache.maven.plugins</groupId>
228
228
<artifactId>maven-checkstyle-plugin</artifactId>
234
234
<action>
235
235
<ignore />
236
236
</action>
237
- </pluginExecution >
237
+ </pluginExecution>-->
238
238
<pluginExecution >
239
239
<pluginExecutionFilter >
240
240
<groupId >org.apache.maven.plugins</groupId >
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.8-beta.7</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 19
19
</organization >
20
20
<properties >
21
21
<main .basedir>${basedir} /../..</main .basedir>
22
- <disable .checks>false </disable .checks>
22
+ <disable .checks>true </disable .checks>
23
23
<java .version>1.8</java .version>
24
24
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
25
25
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
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 >
Original file line number Diff line number Diff line change 118
118
</execution >
119
119
</executions >
120
120
</plugin >
121
- <plugin >
121
+ <!-- < plugin>
122
122
<groupId>org.apache.maven.plugins</groupId>
123
123
<artifactId>maven-checkstyle-plugin</artifactId>
124
124
<executions>
133
133
</configuration>
134
134
</execution>
135
135
</executions>
136
- </plugin >
136
+ </plugin>-->
137
137
<plugin >
138
138
<groupId >org.basepom.maven</groupId >
139
139
<artifactId >duplicate-finder-maven-plugin</artifactId >
Original file line number Diff line number Diff line change 15
15
<properties >
16
16
<main .basedir>${basedir} /../..</main .basedir>
17
17
<java .version>1.8</java .version>
18
- <disable .checks>false </disable .checks>
18
+ <disable .checks>true </disable .checks>
19
19
</properties >
20
20
<modules >
21
21
<module >spring-boot-smoke-test-ant</module >
You can’t perform that action at this time.
0 commit comments