Created
November 5, 2014 17:32
-
-
Save yupadhyay/86199243a6ec506ee139 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--Add sling Model dependencies --> | |
<!-- All your existing dependencies --> | |
<dependency> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>org.apache.sling.models.api</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>org.apache.sling.models.impl</artifactId> | |
</dependency> | |
<!-- Your all build config using content-package-maven-plugin and then this --> | |
<embedded> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>org.apache.sling.models.api</artifactId> | |
<target>/apps/system/install</target> | |
</embedded> | |
<embedded> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>org.apache.sling.models.impl</artifactId> | |
<target>/apps/system/install</target> | |
</embedded> | |
<!-- All other things --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment