Skip to content

Commit

Permalink
build: Move flatten config out of execution
Browse files Browse the repository at this point in the history
This caused issues with install/deploy the unflattened pom. So
the bom for 1.2.0 is unusable.

Signed-off-by: BJ Hargrave <hargrave@us.ibm.com>
  • Loading branch information
bjhargrave committed Jul 13, 2022
1 parent 19a3f28 commit b1085d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/osgi-test-example-mvn/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -269,16 +269,16 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.7</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
</execution>
<execution>
<id>flatten-clean</id>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -343,16 +343,16 @@ SPDX-License-Identifier: ${project.licenses[0].name}
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.2.7</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<execution>
<id>flatten</id>
<phase>process-resources</phase>
<goals>
<goal>flatten</goal>
</goals>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
</execution>
<execution>
<id>flatten-clean</id>
Expand Down

0 comments on commit b1085d8

Please sign in to comment.