This is an automated email from the ASF dual-hosted git repository.
jlmonteiro pushed a commit to branch tomee-8.x
in repository https://gitbox.apache.org/repos/asf/tomee.git
The following commit(s) were added to refs/heads/tomee-8.x by this push:
new 53c7c9696d Force compiler version for MP Config example
53c7c9696d is described below
commit 53c7c9696da13fd664ab13b3f6ebc17c26c174b0
Author: Jean-Louis Monteiro <[email protected]>
AuthorDate: Thu Jun 30 18:40:48 2022 +0200
Force compiler version for MP Config example
---
examples/mp-config-example/pom.xml | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/examples/mp-config-example/pom.xml
b/examples/mp-config-example/pom.xml
index 04629d8630..8783c9324e 100644
--- a/examples/mp-config-example/pom.xml
+++ b/examples/mp-config-example/pom.xml
@@ -101,6 +101,15 @@
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.6.2</version>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
</plugins>
</build>