Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
52660d95
Commit
52660d95
authored
Jul 21, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #17592 from izeye
* pr/17592: Remove println invocations in tests Closes gh-17592
parents
ca5df3cc
8f8b0b49
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
5 deletions
+0
-5
verify.groovy
...gin/src/it/build-info-additional-properties/verify.groovy
+0
-1
verify.groovy
...-plugin/src/it/build-info-custom-build-time/verify.groovy
+0
-1
verify.groovy
...-maven-plugin/src/it/build-info-custom-file/verify.groovy
+0
-1
verify.groovy
...plugin/src/it/build-info-disable-build-time/verify.groovy
+0
-1
verify.groovy
.../spring-boot-maven-plugin/src/it/build-info/verify.groovy
+0
-1
No files found.
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/build-info-additional-properties/verify.groovy
View file @
52660d95
...
...
@@ -4,7 +4,6 @@ import static org.junit.Assert.assertEquals
import
static
org
.
junit
.
Assert
.
assertTrue
def
file
=
new
File
(
basedir
,
"target/classes/META-INF/build-info.properties"
)
println
file
.
getAbsolutePath
()
Properties
properties
=
Verify
.
verifyBuildInfo
(
file
,
'org.springframework.boot.maven.it'
,
'build-info-additional-properties'
,
'Generate build info'
,
'0.0.1.BUILD-SNAPSHOT'
)
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/build-info-custom-build-time/verify.groovy
View file @
52660d95
...
...
@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import
static
org
.
junit
.
Assert
.
assertEquals
def
file
=
new
File
(
basedir
,
"target/classes/META-INF/build-info.properties"
)
println
file
.
getAbsolutePath
()
Properties
properties
=
Verify
.
verifyBuildInfo
(
file
,
'org.springframework.boot.maven.it'
,
'build-info-custom-build-time'
,
'Generate build info with custom build time'
,
'0.0.1.BUILD-SNAPSHOT'
)
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/build-info-custom-file/verify.groovy
View file @
52660d95
...
...
@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import
static
org
.
junit
.
Assert
.
assertTrue
def
file
=
new
File
(
basedir
,
"target/build.info"
)
println
file
.
getAbsolutePath
()
Properties
properties
=
Verify
.
verifyBuildInfo
(
file
,
'org.springframework.boot.maven.it'
,
'build-info-custom-file'
,
'Generate custom build info'
,
'0.0.1.BUILD-SNAPSHOT'
)
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/build-info-disable-build-time/verify.groovy
View file @
52660d95
...
...
@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import
static
org
.
junit
.
Assert
.
assertFalse
def
file
=
new
File
(
basedir
,
"target/classes/META-INF/build-info.properties"
)
println
file
.
getAbsolutePath
()
Properties
properties
=
Verify
.
verifyBuildInfo
(
file
,
'org.springframework.boot.maven.it'
,
'build-info-disable-build-time'
,
'Generate build info with disabled build time'
,
'0.0.1.BUILD-SNAPSHOT'
)
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/build-info/verify.groovy
View file @
52660d95
...
...
@@ -3,7 +3,6 @@ import org.springframework.boot.maven.Verify
import
static
org
.
junit
.
Assert
.
assertTrue
def
file
=
new
File
(
basedir
,
"target/classes/META-INF/build-info.properties"
)
println
file
.
getAbsolutePath
()
Properties
properties
=
Verify
.
verifyBuildInfo
(
file
,
'org.springframework.boot.maven.it'
,
'build-info'
,
'Generate build info'
,
'0.0.1.BUILD-SNAPSHOT'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment