Skip to content

Instantly share code, notes, and snippets.

@lklement
Last active February 2, 2016 04:57
Show Gist options
  • Save lklement/b199cc03b8469357d359 to your computer and use it in GitHub Desktop.
Save lklement/b199cc03b8469357d359 to your computer and use it in GitHub Desktop.
AdvDev 5.6.1, Ch 3: POM Dependencies
<!-- Sling API -->
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.api</artifactId>
<version>2.3.0</version>
<scope> provided</scope>
</dependency>
<!-- Java Servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope> provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.2.1</version>
<scope> provided</scope>
</dependency>
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
<version>2.0</version>
<scope> provided</scope>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment