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
4ce9c6ed
Commit
4ce9c6ed
authored
Jul 18, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Make layout parameter available as a user property"
See gh-17277
parent
d2e34e6b
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
2 additions
and
59 deletions
+2
-59
invoker.properties
...plugin/src/it/jar-with-layout-property/invoker.properties
+0
-0
pom.xml
...boot-maven-plugin/src/it/jar-with-layout-property/pom.xml
+1
-1
SampleApplication.java
...ut-property/src/main/java/org/test/SampleApplication.java
+0
-0
verify.groovy
...aven-plugin/src/it/jar-with-layout-property/verify.groovy
+0
-0
verify.groovy
...t-tools/spring-boot-maven-plugin/src/it/jar/verify.groovy
+1
-0
invoker.properties
...plugin/src/it/repackage-layout-default/invoker.properties
+0
-1
pom.xml
...boot-maven-plugin/src/it/repackage-layout-default/pom.xml
+0
-30
verify.groovy
...aven-plugin/src/it/repackage-layout-default/verify.groovy
+0
-4
SampleApplication.java
...ut-property/src/main/java/org/test/SampleApplication.java
+0
-23
No files found.
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
repackage
-layout-property/invoker.properties
→
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
jar-with
-layout-property/invoker.properties
View file @
4ce9c6ed
File moved
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
repackage
-layout-property/pom.xml
→
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
jar-with
-layout-property/pom.xml
View file @
4ce9c6ed
...
...
@@ -3,7 +3,7 @@
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.springframework.boot.maven.it
</groupId>
<artifactId>
repackage-layout-default
</artifactId>
<artifactId>
jar-with-layout-property
</artifactId>
<version>
0.0.1.BUILD-SNAPSHOT
</version>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
...
...
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
repackage-layout-default
/src/main/java/org/test/SampleApplication.java
→
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
jar-with-layout-property
/src/main/java/org/test/SampleApplication.java
View file @
4ce9c6ed
File moved
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
repackage
-layout-property/verify.groovy
→
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/
jar-with
-layout-property/verify.groovy
View file @
4ce9c6ed
File moved
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/jar/verify.groovy
View file @
4ce9c6ed
...
...
@@ -15,4 +15,5 @@ assertTrue 'main artifact should have been installed',
file
.
text
.
contains
(
"Installing "
+
main
+
" to"
)
assertFalse
'backup artifact should not have been installed'
,
file
.
text
.
contains
(
"Installing "
+
backup
+
"to"
)
assertFalse
file
.
text
.
contains
(
"Layout:"
)
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/repackage-layout-default/invoker.properties
deleted
100644 → 0
View file @
d2e34e6b
invoker.goals
=
package
\ No newline at end of file
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/repackage-layout-default/pom.xml
deleted
100644 → 0
View file @
d2e34e6b
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
org.springframework.boot.maven.it
</groupId>
<artifactId>
repackage-layout-default
</artifactId>
<version>
0.0.1.BUILD-SNAPSHOT
</version>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<maven.compiler.source>
@java.version@
</maven.compiler.source>
<maven.compiler.target>
@java.version@
</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>
@project.groupId@
</groupId>
<artifactId>
@project.artifactId@
</artifactId>
<version>
@project.version@
</version>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
repackage
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/repackage-layout-default/verify.groovy
deleted
100644 → 0
View file @
d2e34e6b
import
static
org
.
junit
.
Assert
.
assertFalse
def
file
=
new
File
(
basedir
,
"build.log"
)
assertFalse
file
.
text
.
contains
(
"Layout:"
)
spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/it/repackage-layout-property/src/main/java/org/test/SampleApplication.java
deleted
100644 → 0
View file @
d2e34e6b
/*
* Copyright 2012-2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
test
;
public
class
SampleApplication
{
public
static
void
main
(
String
[]
args
)
{
}
}
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