Java Reference
In-Depth Information
Adding the Maven configuration
Now that your Maven skeleton is set up, we will include the required dependencies so that
Eclipse will be able to compile your classes as you code them. The only dependency you
will need for this type is javaee-api :
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
Search WWH ::




Custom Search