Skip to content
New issue

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 maven-compiler-plugin version in pom.xml #80

Open
AniketNS opened this issue Nov 18, 2023 · 1 comment
Open

Change maven-compiler-plugin version in pom.xml #80

AniketNS opened this issue Nov 18, 2023 · 1 comment

Comments

@AniketNS
Copy link

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>
@usmans58
Copy link

usmans58 commented Dec 5, 2023

It works with the new version

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants