| commit | 05dc1aab3de9edbf882b507a19717bd52f68bf11 | [log] [tgz] |
|---|---|---|
| author | Robert Munteanu <rombert@apache.org> | Thu Oct 12 19:09:17 2023 +0200 |
| committer | Robert Munteanu <rombert@apache.org> | Thu Oct 12 19:09:17 2023 +0200 |
| tree | 5a44dcf128bcea40bf09011f5a8e144ef7382058 | |
| parent | 70b64f50841dbb128d9d060df4ec8c0054deb8c1 [diff] |
SLING-12094 - Use GitHub for the Maven scm.url value
This module is part of the Apache Sling project.
This module implements a script engine for java servlets, that are compiled on the fly by Sling.
To test it:
mvn -P autoInstallBundle clean install -Dsling.url=http://localhost:8080/system/console
If Sling is running with the launchpad/testing setup.
package apps.foo;
import java.io.IOException; import javax.servlet.ServletException; import org.apache.sling.api.SlingHttpServletRequest; import org.apache.sling.api.SlingHttpServletResponse; import org.apache.sling.api.servlets.SlingSafeMethodsServlet;
public class foo extends SlingSafeMethodsServlet {
protected void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/plain");
response.getWriter().write("Response from " + getClass().getName() + " at " + new java.util.Date());
}
}
Response from apps.foo.foo at Tue Nov 18 14:49:14 CET 2008