The Wayback Machine - https://web.archive.org/web/20220404171222/https://github.com/topics/pom
Skip to content
#

pom

Here are 382 public repositories matching this topic...

abdennour
abdennour commented Jan 20, 2022

Under build>plugins >plugin(artifactId=maven-compiler-plugin) > configuration> target

example 1 working with Java 15

	<build>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<inherited>true</inherited>
				<configuration>
					<source>15</source>
					<target>15</target>
				</configuration>
			</plugin>
    ....
  </build>

example 2 Worki

enhancement good first issue

Improve this page

Add a description, image, and links to the pom topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the pom topic, visit your repo's landing page and select "manage topics."

Learn more