Skip to content

Commit f1eaf0c

Browse files
committed
Add NoHTTP to the build
1 parent 590b024 commit f1eaf0c

File tree

8 files changed

+11
-1251
lines changed

8 files changed

+11
-1251
lines changed

build.gradle

+10
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ buildscript {
1010
classpath 'io.spring.gradle:spring-io-plugin:0.0.8.RELEASE'
1111
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.2'
1212
classpath "io.spring.javaformat:spring-javaformat-gradle-plugin:$javaFormatVersion"
13+
classpath 'io.spring.nohttp:nohttp-gradle:0.0.2.RELEASE'
1314
}
1415
}
1516

@@ -23,6 +24,7 @@ allprojects {
2324

2425
apply plugin: 'samples'
2526
apply plugin: 'org.sonarqube'
27+
apply plugin: 'io.spring.nohttp'
2628

2729
sonarqube {
2830
properties {
@@ -35,6 +37,14 @@ sonarqube {
3537
}
3638
}
3739

40+
nohttp {
41+
source.exclude 'samples/rest-notes-slate/slate/source/javascripts/lib/_jquery*.js'
42+
source.exclude 'buildSrc/.gradle/**'
43+
source.exclude '**/build/**'
44+
source.exclude '**/target/**'
45+
whitelistFile = project.file('config/nohttp/whitelist.lines')
46+
}
47+
3848
ext {
3949
springVersion = '4.3.15.RELEASE'
4050
javadocLinks = [

config/eclipse/org.eclipse.jdt.core.prefs

-411
This file was deleted.

config/eclipse/org.eclipse.jdt.ui.prefs

-125
This file was deleted.

config/nohttp/whitelist.lines

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
^http://rest-assured.io.*

0 commit comments

Comments
 (0)