Merge pull request #16393 from sk1418/ISSUE-16300_maven
[ISSUE-16300_maven] fix
This commit is contained in:
commit
2ea4c541bd
@ -19,17 +19,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<source>${maven.compiler.source}</source>
|
|
||||||
<target>${maven.compiler.target}</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
|
||||||
<maven.compiler.source>9</maven.compiler.source>
|
|
||||||
<maven.compiler.target>9</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -19,17 +19,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<source>${maven.compiler.source}</source>
|
|
||||||
<target>${maven.compiler.target}</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
|
||||||
<maven.compiler.source>9</maven.compiler.source>
|
|
||||||
<maven.compiler.target>9</maven.compiler.target>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
</project>
|
</project>
|
@ -37,17 +37,11 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<source>${maven.compiler.source}</source>
|
|
||||||
<target>${maven.compiler.target}</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>9</maven.compiler.source>
|
|
||||||
<maven.compiler.target>9</maven.compiler.target>
|
|
||||||
<entitymodule.version>1.0</entitymodule.version>
|
<entitymodule.version>1.0</entitymodule.version>
|
||||||
<daomodule.version>1.0</daomodule.version>
|
<daomodule.version>1.0</daomodule.version>
|
||||||
<userdaomodule.version>1.0</userdaomodule.version>
|
<userdaomodule.version>1.0</userdaomodule.version>
|
||||||
|
@ -32,10 +32,6 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
|
||||||
<source>${maven.compiler.source}</source>
|
|
||||||
<target>${maven.compiler.target}</target>
|
|
||||||
</configuration>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
@ -9,12 +9,12 @@
|
|||||||
<name>multimodulemavenproject</name>
|
<name>multimodulemavenproject</name>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<parent>
|
<!--
|
||||||
<groupId>com.baeldung</groupId>
|
No <parent> tag since we want the compiler plugin defined
|
||||||
<artifactId>parent-modules</artifactId>
|
in the <pluginManagement> to be used in submodules.
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
Detailed discussion:
|
||||||
<relativePath>../../</relativePath>
|
https://jira.baeldung.com/browse/BAEL-7813
|
||||||
</parent>
|
-->
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>maven-entitymodule</module>
|
<module>maven-entitymodule</module>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user