Skip to content

Instantly share code, notes, and snippets.

View sridharjayakumar's full-sized avatar

Sridhar Jayakumar sridharjayakumar

View GitHub Profile
@sridharjayakumar
sridharjayakumar / AemResourceResolutionServlet.java
Last active September 9, 2016 08:05 — forked from nateyolles/AemResourceResolutionServlet.java
Get the HTML markup for a resource in AEM / CQ.
package com.nateyolles.aem;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.sling.SlingServlet;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.api.SlingHttpServletResponse;
import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
import org.apache.sling.engine.SlingRequestProcessor;
@sridharjayakumar
sridharjayakumar / sandbox.sh
Last active February 9, 2018 01:34
Maven archetype for AEM 6.1
mvn archetype:generate \
-DarchetypeGroupId=com.adobe.granite.archetypes \
-DarchetypeArtifactId=aem-project-archetype \
-DarchetypeVersion=10 \
-DarchetypeRepository=https://repo.adobe.com/nexus/content/groups/public/ \
-Dversion=1.0.0-SNAPSHOT \
-Dpackage=com.adobe.sandbox \
-DappsFolderName=sandbox \
-DartifactName=sandbox \
-DcomponentGroupName=.hidden \