Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit b266803

Browse files
authored
Merge pull request #115 from chyt/master
Update to 0.1.1-SNAPSHOT, don't accept license by default
2 parents fa06f89 + a73a026 commit b266803

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
*.versionsBackup
12
target/
23
bin/
34
.project

boost-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>io.openliberty.boost</groupId>
77
<artifactId>boost-maven-parent</artifactId>
8-
<version>0.2-SNAPSHOT</version>
8+
<version>0.1.1-SNAPSHOT</version>
99
</parent>
1010

1111
<groupId>io.openliberty.boost</groupId>

boost-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>io.openliberty.boost</groupId>
1212
<artifactId>boost-maven-parent</artifactId>
13-
<version>0.2-SNAPSHOT</version>
13+
<version>0.1.1-SNAPSHOT</version>
1414
</parent>
1515

1616
<artifactId>boost-maven-plugin</artifactId>
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>io.openliberty.boost</groupId>
2525
<artifactId>boost-bom</artifactId>
26-
<version>0.2-SNAPSHOT</version>
26+
<version>0.1.1-SNAPSHOT</version>
2727
<type>pom</type>
2828
<scope>test</scope>
2929
</dependency>

boost-maven-plugin/src/main/java/io/openliberty/boost/liberty/LibertyPackageMojo.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,9 @@ private void installApp(String installAppPackagesVal) throws MojoExecutionExcept
326326
* configDropins.
327327
*
328328
*/
329-
private void installMissingFeatures() throws MojoExecutionException {
330-
executeMojo(getPlugin(), goal("install-feature"), configuration(element(name("serverName"), libertyServerName)), getExecutionEnvironment());
329+
private void installMissingFeatures() throws MojoExecutionException {
330+
executeMojo(getPlugin(), goal("install-feature"), configuration(element(name("serverName"), libertyServerName),
331+
element(name("features"), element(name("acceptLicense"), "false"))), getExecutionEnvironment());
331332
}
332333

333334
/**

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>io.openliberty.boost</groupId>
1010
<artifactId>boost-maven-parent</artifactId>
11-
<version>0.2-SNAPSHOT</version>
11+
<version>0.1.1-SNAPSHOT</version>
1212
<packaging>pom</packaging>
1313

1414
<name>boost-maven-plugin Parent</name>

0 commit comments

Comments
 (0)