I am new to Struts2.
Whenever I include the Struts2 dependency, why do I have to do like this?
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-core</artifactId>
<version>${struts.version}</version>
<exclusions>
<exclusion>
<artifactId>tools</artifactId>
<groupId>com.sun</groupId>
</exclusion>
</exclusions>
</dependency>
If I don't do this, Eclipse Juno gives me error at this point.
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd
With this error:
Missing artifact com.sun:tools:jar:1.5.0
Is this the way to do it or is there a better way?
I noticed that this problem happens from version 2.1.6 and higher.