Skip to content

Commit 203c8d0

Browse files
committed
separated validation module from the rest
1 parent 9049c0f commit 203c8d0

5 files changed

Lines changed: 11 additions & 2 deletions

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ install: ./gradlew assemble
1313
script:
1414
- ./gradlew clean build --info
1515
- cd spring-boot/starter && ./gradlew clean build --info
16+
- cd spring-boot/validation && ./gradlew clean build --info
1617

1718
language: java
1819

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ include 'spring-boot:modular:booking-module'
2020
include 'spring-boot:modular:application'
2121
include 'spring-boot:spring-boot-testing'
2222
include 'spring-boot:spring-boot-logging'
23-
include 'spring-boot:validation'
2423
include 'spring-boot:conditionals'
2524
include 'spring-boot:configuration'
2625
include 'spring-boot:paging'

spring-boot/validation/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ repositories {
2323
mavenCentral()
2424
}
2525

26-
2726
dependencies {
2827
implementation('org.springframework.boot:spring-boot-starter-data-jpa')
2928
implementation('org.springframework.boot:spring-boot-starter-validation')
@@ -37,3 +36,7 @@ dependencies {
3736
implementation('javax.xml.bind:jaxb-api:2.3.1')
3837
implementation('org.javassist:javassist:3.23.1-GA')
3938
}
39+
40+
test{
41+
useJUnitPlatform()
42+
}
53.4 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Tue Feb 06 12:27:20 CET 2018
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-bin.zip

0 commit comments

Comments
 (0)