Can't change project torch ear version to maven error 1.3 in eclipse?

I'm new to maven, I created a maven project in Eclipse on the Wildfly server. Its deployment is excellent and works fine, but I have a compilation problem in the workspace, as shown below.

cannot change the project torch ear version to 1.3

There is no problem when I indicate the face of the EAR project as 7.0, but in the problems that it shows as in the images.

enter image description here

enter image description here

How can I fix this problem?

+4
source share
2 answers

, : - 3.0?

+3

, Wildfly 8 9, ( jee), .

<build>
<plugins>
  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-ear-plugin</artifactId>
    <version>2.10.1</version>
    <configuration>
       <version>7</version>
    </configuration>
  </plugin>
</plugins>
</build>
0

Source: https://habr.com/ru/post/1610259/


All Articles