We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change pom.xml code where the maven-compiler-plugin is old version and it is creating an issue while building the application.
change code
<plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin>
to
<plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin>
The text was updated successfully, but these errors were encountered:
It works with the new version
Sorry, something went wrong.
No branches or pull requests
Change pom.xml code where the maven-compiler-plugin is old version and it is creating an issue while building the application.
change code
to
The text was updated successfully, but these errors were encountered: