svn commit: r1804333 - /sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java

2017-08-07 Thread justin
Author: justin
Date: Mon Aug  7 13:30:02 2017
New Revision: 1804333

URL: http://svn.apache.org/viewvc?rev=1804333=rev
Log:
SLING-7028 - remove assumption that histograms are durations

Modified:

sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java

Modified: 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java
URL: 
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java?rev=1804333=1804332=1804333=diff
==
--- 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java
 (original)
+++ 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/MetricWebConsolePlugin.java
 Mon Aug  7 13:30:02 2017
@@ -314,7 +314,6 @@ public class MetricWebConsolePlugin exte
 pw.println("98%");
 pw.println("99%");
 pw.println("999%");
-pw.println("Duration Unit");
 pw.println("");
 pw.println("");
 pw.println("");
@@ -325,25 +324,22 @@ public class MetricWebConsolePlugin exte
 Snapshot s = h.getSnapshot();
 String name = e.getKey();
 
-double durationFactor = 1.0 / 
timeUnit.durationFor(name).toNanos(1);
-String durationUnit = 
timeUnit.durationFor(name).toString().toLowerCase(Locale.US);
 pw.printf("%n", rowClass);
 
 pw.printf("%s", name);
 pw.printf("%d", h.getCount());
-pw.printf("%f", s.getMedian() * durationFactor);
-pw.printf("%f", s.getMin() * durationFactor);
-pw.printf("%f", s.getMax() * durationFactor);
-pw.printf("%f", s.getMean() * durationFactor);
-pw.printf("%f", s.getStdDev() * durationFactor);
-
-pw.printf("%f", s.get75thPercentile() * durationFactor);
-pw.printf("%f", s.get95thPercentile() * durationFactor);
-pw.printf("%f", s.get98thPercentile() * durationFactor);
-pw.printf("%f", s.get99thPercentile() * durationFactor);
-pw.printf("%f", s.get999thPercentile() * durationFactor);
+pw.printf("%f", s.getMedian());
+pw.printf("%d", s.getMin());
+pw.printf("%d", s.getMax());
+pw.printf("%f", s.getMean());
+pw.printf("%f", s.getStdDev());
+
+pw.printf("%f", s.get75thPercentile());
+pw.printf("%f", s.get95thPercentile());
+pw.printf("%f", s.get98thPercentile());
+pw.printf("%f", s.get99thPercentile());
+pw.printf("%f", s.get999thPercentile());
 
-pw.printf("%s", durationUnit);
 
 pw.println("");
 rowClass = "odd".equals(rowClass) ? "even" : "odd";




svn commit: r1804334 - in /sling/trunk/bundles/commons/metrics: pom.xml src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java src/test/java/org/apache/sling/commons/metrics/internal

2017-08-07 Thread justin
Author: justin
Date: Mon Aug  7 13:30:08 2017
New Revision: 1804334

URL: http://svn.apache.org/viewvc?rev=1804334=rev
Log:
SLING-7031 - configurable component to write subset of metrics to log file on a 
recurring basis.

Added:

sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java

sling/trunk/bundles/commons/metrics/src/test/java/org/apache/sling/commons/metrics/internal/LogReporterTest.java
Modified:
sling/trunk/bundles/commons/metrics/pom.xml

Modified: sling/trunk/bundles/commons/metrics/pom.xml
URL: 
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/metrics/pom.xml?rev=1804334=1804333=1804334=diff
==
--- sling/trunk/bundles/commons/metrics/pom.xml (original)
+++ sling/trunk/bundles/commons/metrics/pom.xml Mon Aug  7 13:30:08 2017
@@ -238,6 +238,12 @@
 test
  
 
+junit-addons
+junit-addons
+1.4
+test
+
+
 org.apache.sling
 org.apache.sling.testing.paxexam
 0.0.4

Added: 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java
URL: 
http://svn.apache.org/viewvc/sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java?rev=1804334=auto
==
--- 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java
 (added)
+++ 
sling/trunk/bundles/commons/metrics/src/main/java/org/apache/sling/commons/metrics/internal/LogReporter.java
 Mon Aug  7 13:30:08 2017
@@ -0,0 +1,150 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.sling.commons.metrics.internal;
+
+import com.codahale.metrics.Metric;
+import com.codahale.metrics.MetricFilter;
+import com.codahale.metrics.MetricRegistry;
+import com.codahale.metrics.Slf4jReporter;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.ServiceReference;
+import org.osgi.service.component.annotations.Activate;
+import org.osgi.service.component.annotations.Component;
+import org.osgi.service.component.annotations.ConfigurationPolicy;
+import org.osgi.service.component.annotations.Deactivate;
+import org.osgi.service.metatype.annotations.AttributeDefinition;
+import org.osgi.service.metatype.annotations.Designate;
+import org.osgi.service.metatype.annotations.ObjectClassDefinition;
+import org.osgi.util.tracker.ServiceTracker;
+import org.osgi.util.tracker.ServiceTrackerCustomizer;
+import org.slf4j.LoggerFactory;
+
+import java.util.concurrent.TimeUnit;
+import java.util.regex.Pattern;
+
+@Component(service = {}, configurationPolicy = ConfigurationPolicy.REQUIRE)
+@Designate(ocd = LogReporter.Config.class, factory = true)
+public class LogReporter implements ServiceTrackerCustomizer {
+
+private BundleContext context;
+private ServiceTracker tracker;
+private Config config;
+
+@Activate
+protected void activate(Config config, BundleContext context) {
+this.config = config;
+this.context = context;
+tracker = new ServiceTracker<>(context, MetricRegistry.class, this);
+tracker.open();
+}
+
+@Deactivate
+protected void deactivate(BundleContext context) {
+tracker.close();
+}
+
+//~-< ServiceTracker >
+
+@Override
+public Slf4jReporter addingService(ServiceReference 
serviceReference) {
+MetricRegistry registry = context.getService(serviceReference);
+String metricRegistryName = (String) 
serviceReference.getProperty(MetricWebConsolePlugin.METRIC_REGISTRY_NAME);
+
+if (config.registryName() == null || config.registryName().length() == 0
+|| config.registryName().equals(metricRegistryName)) {
+Slf4jReporter.Builder builder = 
Slf4jReporter.forRegistry(registry).
+outputTo(LoggerFactory.getLogger(config.loggerName())).
+ 

svn commit: r1804331 - in /sling/site/trunk/content: downloads.list news.mdtext

2017-08-07 Thread cziegeler
Author: cziegeler
Date: Mon Aug  7 13:14:17 2017
New Revision: 1804331

URL: http://svn.apache.org/viewvc?rev=1804331=rev
Log:
Sling Security 1.1.6

Modified:
sling/site/trunk/content/downloads.list
sling/site/trunk/content/news.mdtext

Modified: sling/site/trunk/content/downloads.list
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/downloads.list?rev=1804331=1804330=1804331=diff
==
--- sling/site/trunk/content/downloads.list (original)
+++ sling/site/trunk/content/downloads.list Mon Aug  7 13:14:17 2017
@@ -187,7 +187,7 @@ Scripting HTL JavaScript Use Provider|or
 Scripting HTL Sling Models Use 
Provider|org.apache.sling.scripting.sightly.models.provider|1.0.6
 Scripting HTL REPL|org.apache.sling.scripting.sightly.repl|1.0.4
 Scripting Thymeleaf|org.apache.sling.scripting.thymeleaf|1.1.0
-Security|org.apache.sling.security|1.1.4
+Security|org.apache.sling.security|1.1.6
 Service User Mapper|org.apache.sling.serviceusermapper|1.3.4
 Servlet Helpers|org.apache.sling.servlet-helpers|1.1.0
 Servlets Compat|org.apache.sling.servlets.compat|1.0.2

Modified: sling/site/trunk/content/news.mdtext
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/news.mdtext?rev=1804331=1804330=1804331=diff
==
--- sling/site/trunk/content/news.mdtext (original)
+++ sling/site/trunk/content/news.mdtext Mon Aug  7 13:14:17 2017
@@ -1,6 +1,6 @@
 Title: News
 
-* New Releases: Apache Sling Scripting HTL Engine 1.0.38, Apache Sling 
Scripting HTL Compiler 1.0.10, Apache Sling HTL Maven Plugin 1.0.8 (August 7th, 
2017)
+* New Releases: Apache Sling Security 1.1.6, Apache Sling Scripting HTL Engine 
1.0.38, Apache Sling Scripting HTL Compiler 1.0.10, Apache Sling HTL Maven 
Plugin 1.0.8 (August 7th, 2017)
 * New Release: Apache Sling Launchpad Base 5.6.6-2.6.20 (August 3rd, 2017)
 * New Release: Apache Sling Resource Resolver 1.5.30 (July 27th, 2017)
 * New Releases: Apache Sling Service User Mapper 1.3.4, Resource Resolver 
1.5.28, JCR Base 3.0.4, and JCR Resource 3.0.4 (July 21th, 2017)




svn commit: r20887 - /release/sling/

2017-08-07 Thread cziegeler
Author: cziegeler
Date: Mon Aug  7 13:13:02 2017
New Revision: 20887

Log:
Sling Security 1.1.6

Added:
release/sling/org.apache.sling.security-1.1.6-javadoc.jar   (with props)
release/sling/org.apache.sling.security-1.1.6-javadoc.jar.asc
release/sling/org.apache.sling.security-1.1.6-javadoc.jar.md5
release/sling/org.apache.sling.security-1.1.6-javadoc.jar.sha1
release/sling/org.apache.sling.security-1.1.6-source-release.zip   (with 
props)
release/sling/org.apache.sling.security-1.1.6-source-release.zip.asc
release/sling/org.apache.sling.security-1.1.6-source-release.zip.md5
release/sling/org.apache.sling.security-1.1.6-source-release.zip.sha1
release/sling/org.apache.sling.security-1.1.6-sources.jar   (with props)
release/sling/org.apache.sling.security-1.1.6-sources.jar.asc
release/sling/org.apache.sling.security-1.1.6-sources.jar.md5
release/sling/org.apache.sling.security-1.1.6-sources.jar.sha1
release/sling/org.apache.sling.security-1.1.6.jar   (with props)
release/sling/org.apache.sling.security-1.1.6.jar.asc
release/sling/org.apache.sling.security-1.1.6.jar.md5
release/sling/org.apache.sling.security-1.1.6.jar.sha1
release/sling/org.apache.sling.security-1.1.6.pom
release/sling/org.apache.sling.security-1.1.6.pom.asc
release/sling/org.apache.sling.security-1.1.6.pom.md5
release/sling/org.apache.sling.security-1.1.6.pom.sha1
Removed:
release/sling/org.apache.sling.security-1.1.4-javadoc.jar
release/sling/org.apache.sling.security-1.1.4-javadoc.jar.asc
release/sling/org.apache.sling.security-1.1.4-javadoc.jar.md5
release/sling/org.apache.sling.security-1.1.4-javadoc.jar.sha1
release/sling/org.apache.sling.security-1.1.4-source-release.zip
release/sling/org.apache.sling.security-1.1.4-source-release.zip.asc
release/sling/org.apache.sling.security-1.1.4-source-release.zip.md5
release/sling/org.apache.sling.security-1.1.4-source-release.zip.sha1
release/sling/org.apache.sling.security-1.1.4-sources.jar
release/sling/org.apache.sling.security-1.1.4-sources.jar.asc
release/sling/org.apache.sling.security-1.1.4-sources.jar.md5
release/sling/org.apache.sling.security-1.1.4-sources.jar.sha1
release/sling/org.apache.sling.security-1.1.4.jar
release/sling/org.apache.sling.security-1.1.4.jar.asc
release/sling/org.apache.sling.security-1.1.4.jar.md5
release/sling/org.apache.sling.security-1.1.4.jar.sha1
release/sling/org.apache.sling.security-1.1.4.pom
release/sling/org.apache.sling.security-1.1.4.pom.asc
release/sling/org.apache.sling.security-1.1.4.pom.md5
release/sling/org.apache.sling.security-1.1.4.pom.sha1

Added: release/sling/org.apache.sling.security-1.1.6-javadoc.jar
==
Binary file - no diff available.

Propchange: release/sling/org.apache.sling.security-1.1.6-javadoc.jar
--
svn:mime-type = application/octet-stream

Added: release/sling/org.apache.sling.security-1.1.6-javadoc.jar.asc
==
--- release/sling/org.apache.sling.security-1.1.6-javadoc.jar.asc (added)
+++ release/sling/org.apache.sling.security-1.1.6-javadoc.jar.asc Mon Aug  7 
13:13:02 2017
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Comment: GPGTools - http://gpgtools.org
+
+iQIcBAABCgAGBQJZhGtoAAoJED/PUp/y8noGoO8P/jK3vGhg1bL/5RCkqMbVINyl
+QlF3TLLGxVazI0DM/OUcQ60xFogcAAfY76xIMPLijeyUjG77Y4IwAnSKNwgw+xt9
+dCgL70/UUOg3YYJy5dCDGcFkSoEZOdViYArdwAav7M8xtBdws4BxzxAAx01UUjq5
+vKl8//a5XnsnaKqPXZkV0AN/Q76QeXyX9xCwwckT0QmVQvYH+5BhVlof3y4CLC/R
+GvDafij4bDqZC3YydwsqGICwAC8Y9RPWJM3Y05Pw4OmPYStlWldDZ2acdLeOOHMS
+vIdJQHoZ0XZMCIKee9S9vZeA2tu0tmwhSSVsxzm9LWjlK8P9mPrhM26LtKxQrsRA
+IpvPdZNNwgh87KR3gy5/Ro271FtzhMv5qO9wXJpe2HoHkKj3xk6S7jLc8iUi+vTf
+z+d2h+88VAGyTrQl/bWZYnyRwsv7MomLS7PbPHq7jM+3il0vM4UMG5JoRISV/HX0
+OZl054WRfFWa7/OC/aPG8k+BJJcG+aFCO2Qth5+RaeQ/e90uoQxh/w3leA6ng9PE
+UWJi0BgUL7pm64RwFAYaHVFcHXlzFnpgWFbd+E9QVNsql4IPHN4odu2jLCF7hhBC
+078QLX+kS6kptd9l1+SPrqNA6oeISJwKx0UB0CF1HDXxBEqvhIXj3Nza61OwQvCk
+mdTbJpgfn1iSrSblJ5x+
+=zaCt
+-END PGP SIGNATURE-

Added: release/sling/org.apache.sling.security-1.1.6-javadoc.jar.md5
==
--- release/sling/org.apache.sling.security-1.1.6-javadoc.jar.md5 (added)
+++ release/sling/org.apache.sling.security-1.1.6-javadoc.jar.md5 Mon Aug  7 
13:13:02 2017
@@ -0,0 +1 @@
+27d49393282c07e793c5f31731dda5c1
\ No newline at end of file

Added: release/sling/org.apache.sling.security-1.1.6-javadoc.jar.sha1
==
--- release/sling/org.apache.sling.security-1.1.6-javadoc.jar.sha1 (added)
+++ release/sling/org.apache.sling.security-1.1.6-javadoc.jar.sha1 Mon Aug  7 
13:13:02 2017
@@ -0,0 +1 @@

Nexus: Promotion Completed

2017-08-07 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDeployer properties:"userAgent" = "Apache-Maven/3.5.0 (Java 1.7.0_80; Mac OS X 10.12.6)""userId" = "cziegeler""ip" = "193.104.215.11"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6.pom(SHA1: 04c06533d11e2285c6388122f8be4b798b4da5c9)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-javadoc.jar.asc(SHA1: 8142740586061d528529621b5f0dc6716400d798)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6.pom.asc(SHA1: 8b6215f5740e10e250e408973f3188b4a378260a)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-javadoc.jar(SHA1: 25ea04af3923bc46d8f7b12dc2b7d7f5e6bed3e3)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-source-release.zip.asc(SHA1: 072c9d3e7df7be29dd05cca49f6bacceab575ebe)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-sources.jar.asc(SHA1: d51f0d799fae9ab8544e229cedbcacebaf0eb54b)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-sources.jar(SHA1: 2a7ccddd70c07f44592d138b3ace840a7cd69df1)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6.jar(SHA1: 7cefabae1ce8215b0bbd6da98e7051c90da4f2d7)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6-source-release.zip(SHA1: 1e471d821176f3adab75d45d806d1cdfcec654db)/org/apache/sling/org.apache.sling.security/1.1.6/org.apache.sling.security-1.1.6.jar.asc(SHA1: af29b273f661675ee6d3cb5ffbe37f5579cc9c7c)Action performed by Carsten Ziegeler (cziegeler)

svn commit: r1804324 - /sling/trunk/launchpad/builder/src/main/provisioning/composum.txt

2017-08-07 Thread rombert
Author: rombert
Date: Mon Aug  7 11:56:23 2017
New Revision: 1804324

URL: http://svn.apache.org/viewvc?rev=1804324=rev
Log:
SLING-7032 - Update to Composum 1.8.2

Modified:
sling/trunk/launchpad/builder/src/main/provisioning/composum.txt

Modified: sling/trunk/launchpad/builder/src/main/provisioning/composum.txt
URL: 
http://svn.apache.org/viewvc/sling/trunk/launchpad/builder/src/main/provisioning/composum.txt?rev=1804324=1804323=1804324=diff
==
--- sling/trunk/launchpad/builder/src/main/provisioning/composum.txt (original)
+++ sling/trunk/launchpad/builder/src/main/provisioning/composum.txt Mon Aug  7 
11:56:23 2017
@@ -17,7 +17,7 @@
 #  under the License.
 [feature name=composum-console]
 [variables]
-composum.version=1.8.1
+composum.version=1.8.2
 
 [artifacts startLevel=20]
 




svn commit: r1016499 - /websites/production/sling/content/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 10:18:37 2017
New Revision: 1016499

Log:
Publishing svnmucc operation to sling site by radu

Added:
websites/production/sling/content/
  - copied from r1016498, websites/staging/sling/trunk/content/



svn commit: r1804316 - /sling/site/trunk/content/news.mdtext

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 10:07:28 2017
New Revision: 1804316

URL: http://svn.apache.org/viewvc?rev=1804316=rev
Log:
dummy change to retrigger CMS build

Modified:
sling/site/trunk/content/news.mdtext

Modified: sling/site/trunk/content/news.mdtext
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/news.mdtext?rev=1804316=1804315=1804316=diff
==
--- sling/site/trunk/content/news.mdtext (original)
+++ sling/site/trunk/content/news.mdtext Mon Aug  7 10:07:28 2017
@@ -498,4 +498,4 @@ Apache Sling Scripting Sightly JS Use Pr
 * Apache Sling has graduated into a top level project! (June 17, 2009)
 
 
-  [1]: http://s.apache.org/CVE-2012-2138
\ No newline at end of file
+  [1]: http://s.apache.org/CVE-2012-2138




svn commit: r1016497 - /websites/production/sling/content/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 10:00:12 2017
New Revision: 1016497

Log:
Publishing svnmucc operation to sling site by radu

Added:
websites/production/sling/content/
  - copied from r1016496, websites/staging/sling/trunk/content/



svn commit: r1804313 - in /sling/site/trunk/content/components/htl-maven-plugin: dependencies.html htl-maven-plugin-LATEST/ jira-report.html

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:56:03 2017
New Revision: 1804313

URL: http://svn.apache.org/viewvc?rev=1804313=rev
Log:
Updated HTL Maven Plugin 1.0.8 documentation

Removed:

sling/site/trunk/content/components/htl-maven-plugin/htl-maven-plugin-LATEST/
Modified:
sling/site/trunk/content/components/htl-maven-plugin/dependencies.html
sling/site/trunk/content/components/htl-maven-plugin/jira-report.html

Modified: sling/site/trunk/content/components/htl-maven-plugin/dependencies.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin/dependencies.html?rev=1804313=1804312=1804313=diff
==
--- sling/site/trunk/content/components/htl-maven-plugin/dependencies.html 
(original)
+++ sling/site/trunk/content/components/htl-maven-plugin/dependencies.html Mon 
Aug  7 09:56:03 2017
@@ -1787,7 +1787,7 @@ file comparators, endian transformation
 
 
org.apache.sling:org.apache.sling.scripting.sightly.compiler:jar:1.0.10
 -
--
+https://repo.maven.apache.org/maven2/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10.jar;>https://repo.maven.apache.org/maven2; 
src="images/icon_success_sml.gif" />
 -
 -
 -
@@ -2012,7 +2012,7 @@ file comparators, endian transformation
 
 51 (compile: 34, test: 11, provided: 6)
 0
-50
+51
 0
 0
 0

Modified: sling/site/trunk/content/components/htl-maven-plugin/jira-report.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin/jira-report.html?rev=1804313=1804312=1804313=diff
==
--- sling/site/trunk/content/components/htl-maven-plugin/jira-report.html 
(original)
+++ sling/site/trunk/content/components/htl-maven-plugin/jira-report.html Mon 
Aug  7 09:56:03 2017
@@ -72,31 +72,46 @@
 Summary
 Fix Version
 
+Improvement
+https://issues.apache.org/jira/browse/SLING-7026;>SLING-7026
+htl-maven-plugin: Namespace all user properties
+HTL Maven Plugin 1.0.8
+
+Bug
+https://issues.apache.org/jira/browse/SLING-7025;>SLING-7025
+htl-maven-plugin: Correctly state default values for include parameter
+HTL Maven Plugin 1.0.8
+
+Improvement
+https://issues.apache.org/jira/browse/SLING-6651;>SLING-6651
+Improve documentation for htl-maven-plugin
+HTL Maven Plugin 1.0.8
+
 Bug
 https://issues.apache.org/jira/browse/SLING-6445;>SLING-6445
 HTL scripts do not compile on Windows if the compiler needs to generate 
any warnings
 Scripting HTL Compiler 1.0.6, HTL Maven Plugin 1.0.6
-
+
 Bug
 https://issues.apache.org/jira/browse/SLING-6230;>SLING-6230
 The SightlyCompiler reports errors and warnings with an offset by one for 
the line count
 Scripting HTL Compiler 1.0.4, HTL Maven Plugin 1.0.4
-
+
 Improvement
 https://issues.apache.org/jira/browse/SLING-6084;>SLING-6084
 htl-maven-plugin should provide skip parameter
 HTL Maven Plugin 1.0.2
-
+
 Improvement
 https://issues.apache.org/jira/browse/SLING-6083;>SLING-6083
 htl-maven-plugin should not fail when source directory not found
 HTL Maven Plugin 1.0.2
-
+
 Improvement
 https://issues.apache.org/jira/browse/SLING-5863;>SLING-5863
 Make the sightly-maven-plugin m2e compatible
 HTL Maven Plugin 1.0.0
-
+
 New Feature
 https://issues.apache.org/jira/browse/SLING-5788;>SLING-5788
 Implement a Sightly Maven Plugin




svn commit: r1804311 - in /sling/site/trunk/content/components: htl-maven-plugin-archives/htl-maven-plugin-1.0.8/htl-maven-plugin-LATEST/ htl-maven-plugin-archives/htl-maven-plugin-LATEST/ htl-maven-p

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:50:40 2017
New Revision: 1804311

URL: http://svn.apache.org/viewvc?rev=1804311=rev
Log:
Added HTL Maven Plugin 1.0.8 documentation

Added:
sling/site/trunk/content/components/htl-maven-plugin/
  - copied from r1804309, 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-1.0.8/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-1.0.8/htl-maven-plugin-LATEST/
  - copied from r1804310, 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/

sling/site/trunk/content/components/htl-maven-plugin/htl-maven-plugin-LATEST/
  - copied from r1804309, 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/
Removed:

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/



svn commit: r1804309 [7/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-info.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-info.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-info.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-info.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,137 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Information
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+
+  
+Dependencies  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Project Information
+This document provides an overview of the various documents and links that 
are part of this project's general information. All of this content is 
automatically generated by http://maven.apache.org;>Maven on behalf of the project.
+
+Overview
+
+
+Document
+Description
+
+Dependencies
+This document lists the project's dependencies and provides information on 
each dependency.
+
+Dependency Information
+This document describes how to to include this project as a dependency 
using various dependency management tools.
+
+Dependency Management
+This document lists the dependencies that are defined through 
dependencyManagement.
+
+Distribution Management
+This document provides informations on the distribution management of this 
project.
+
+About
+The Apache Sling HTL Maven Plugin provides support for validating HTML 
Template Language scripts from projects.
+
+Issue Management
+This document provides information on the issue management system used in 
this project.
+
+Licenses
+This document lists the project license(s).
+
+Mailing Lists
+This document provides subscription and archive information for this 
project's mailing lists.
+
+Plugin Management
+This document lists the plugins that are defined through 
pluginManagement.
+
+Plugins
+This document lists the build plugins and the report plugins used by this 
project.
+
+Team
+This document provides information on the members of this project. These 
are the individuals who have contributed to the project in one form or 
another.
+
+Source Code Management
+This document lists ways to access the online source repository.
+
+Summary
+This document lists other related information of this 
project
+
+  
+
+
+
+  
+
+Copyright 20072017
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+
+
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-reports.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-reports.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-reports.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/project-reports.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,101 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Generated Reports
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information  
+Project Reports
+
+  
+JavaDocs  
+Surefire Report  
+JIRA Report  
+Plugin Documentation  
+  
+  
+  
+  
+  
+  
+  
+  
+  

svn commit: r1804309 [6/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/update.gif
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/update.gif?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/update.gif
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/window-new.png
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/window-new.png?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/images/window-new.png
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings-white.png
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings-white.png?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings-white.png
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings.png
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings.png?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/img/glyphicons-halflings.png
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/index.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/index.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/index.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/index.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,115 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Apache Sling HTL Maven 
Plugin
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction
+  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About
+  
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Apache Sling HTL Maven 
Plugin
+The Apache Sling HTL Maven Plugin, M2Eclipse compatible, provides support 
for validating HTML Template Language scripts from projects during build time, 
reporting issues like:
+
+
+  
+syntax errors;
+  
+expression warnings (e.g. missing required display contexts, sensible 
attributes with dynamic values, etc.);
+  
+incorrect usage of block elements.
+
+
+Goals
+The HTL Maven Plugin has only one goal:
+
+
+  
+htl:validate is bound to the compile 
phase and is used to validate HTL scripts.
+
+
+Usage
+General instructions on how to use the HTL Maven Plugin can be found on the 
usage page.
+In case you still have questions regarding the plugins usage feel 
free to contact the Apache Sling 

svn commit: r1804309 [1/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:49:22 2017
New Revision: 1804309

URL: http://svn.apache.org/viewvc?rev=1804309=rev
Log:
Site checkin for project Apache Sling HTL Maven Plugin

Added:

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/allclasses-frame.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/allclasses-noframe.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/constant-values.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/deprecated-list.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/help-doc.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/index-all.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/index.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/HelpMojo.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/ValidateMojo.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/HelpMojo.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-tree.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-use.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/overview-tree.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/package-list

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/script.js

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/stylesheet.css

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/apache-maven-fluido-1.6.min.css

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/print.css

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/site.css

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/distribution-management.html

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.eot
   (with props)

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.svg

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.ttf
   (with props)

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.woff
   (with 

svn commit: r1804309 [3/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,2035 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Dependencies
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies
+  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+
+Project Dependencies
+
+compile
+The following is a list of compile dependencies for this project. These 
dependencies are required to compile and run the application:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+commons-io
+http://commons.apache.org/proper/commons-io/;>commons-io
+2.5
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+commons-lang
+http://commons.apache.org/lang/;>commons-lang
+2.5
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-artifact/;>maven-artifact
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-core/;>maven-core
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-plugin-api/;>maven-plugin-api
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.sling
+http://sling.apache.org/org.apache.sling.scripting.sightly.compiler;>org.apache.sling.scripting.sightly.compiler
+1.0.10
+jar
+https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.codehaus.plexus
+http://codehaus-plexus.github.io/plexus-utils/;>plexus-utils
+3.0.24
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.sonatype.plexus
+http://forge.sonatype.com/spice-parent/plexus-build-api/;>plexus-build-api
+0.0.7
+jar
+http://www.apache.org/licenses/LICENSE-2.0;>Apache Public License 
2.0
+
+test
+The following is a list of test dependencies for this project. These 
dependencies are only required to compile and run unit tests for the 
application:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+junit
+http://junit.org;>junit
+4.12
+jar
+http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License 
1.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-compat/;>maven-compat
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven.plugin-testing
+http://maven.apache.org/plugin-testing/maven-plugin-testing-harness/;>maven-plugin-testing-harness
+3.3.0
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.codehaus.plexus
+http://plexus.codehaus.org/plexus-containers/plexus-container-default/;>plexus-container-default
+1.6
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
+
+org.slf4j
+http://www.slf4j.org;>slf4j-simple
+1.7.6
+jar
+http://www.opensource.org/licenses/mit-license.php;>MIT 
License
+
+provided
+The following is a list of provided dependencies for this project. These 
dependencies are required to compile the application, but should be provided by 
default when using the library:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+org.apache.maven.plugin-tools
+http://maven.apache.org/plugin-tools/maven-plugin-annotations;>maven-plugin-annotations
+3.4
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.osgi
+http://www.osgi.org/;>org.osgi.service.component.annotations
+1.3.0
+jar

svn commit: r1804309 [5/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.svg
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.svg?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.svg
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.svg
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,229 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.ttf
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.ttf?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.ttf
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.woff
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.woff?rev=1804309=auto
==
Binary file - no diff available.

Propchange: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/glyphicons-halflings-regular.woff
--
svn:mime-type = application/octet-stream

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/help-mojo.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/help-mojo.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/help-mojo.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/help-mojo.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,221 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  htl:help
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+  
+
+htl:help
+  
+Full name:
+  
+org.apache.sling:htl-maven-plugin:1.0.8:help
+  
+Description:
+  
+Display help information on htl-maven-plugin.
+Call mvn htl:help -Ddetail=true
+-Dgoal=goal-name to display parameter details.
+  
+Attributes:
+  
+
+
+The goal is thread-safe and supports parallel builds.
+  
+  
+
+Optional Parameters
+
+
+  
+
+
+Name
+
+Type
+
+Since
+
+Description
+  
+  
+
+
+detail
+
+boolean
+
+-
+
+If true, display all settable properties for each
+goal.Default value is: false.User property 
is: detail.
+  
+  
+
+
+goal
+
+String
+
+-
+
+The name of the goal for which to show help. If unspecified, all
+goals will be displayed.User property is: goal.
+  
+  
+
+
+indentSize
+   

svn commit: r1804309 [4/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,121 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Dependency 
Information
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency 
Information
+  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Dependency Information
+
+Apache Maven
+dependency
+  groupIdorg.apache.sling/groupId
+  artifactIdhtl-maven-plugin/artifactId
+  version1.0.8/version
+  typemaven-plugin/type
+/dependency
+
+Apache Buildr
+'org.apache.sling:htl-maven-plugin:maven-plugin:1.0.8'
+
+Apache Ivy
+dependency 
org=org.apache.sling name=htl-maven-plugin 
rev=1.0.8
+  artifact name=htl-maven-plugin type=maven-plugin 
/
+/dependency
+
+Groovy Grape
+@Grapes(
+@Grab(group='org.apache.sling', module='htl-maven-plugin', version='1.0.8')
+)
+
+Gradle/Grails
+compile 
'org.apache.sling:htl-maven-plugin:1.0.8'
+
+Scala SBT
+libraryDependencies += 
org.apache.sling % htl-maven-plugin % 
1.0.8
+
+Leiningen
+[org.apache.sling/htl-maven-plugin 
1.0.8]
+
+  
+
+
+
+  
+
+Copyright 20072017
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+
+
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,241 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Dependency 
Management
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency 
Management
+  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Project Dependency 
Management
+
+compile
+The following is a list of compile dependencies in the DependencyManagement 
of this project. These dependencies can be included in the submodules to 
compile and run the submodule:
+
+
+GroupId
+ArtifactId
+Version
+Type
+License
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-aether-provider/;>maven-aether-provider
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-compat/;>maven-compat
+3.3.9
+jar

svn commit: r1804309 [2/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,124 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+Uses of Class org.apache.sling.maven.htl.ValidateMojo (Apache Sling HTL 
Maven Plugin 1.0.8 API)
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Uses of Classorg.apache.sling.maven.htl.ValidateMojo
+
+No usage of 
org.apache.sling.maven.htl.ValidateMojo
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+Copyright  20072017 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,22 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+org.apache.sling.maven.htl
+
+Classes
+
+HelpMojo
+ValidateMojo
+
+
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html?rev=1804309=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 Mon Aug  7 09:49:22 2017
@@ -0,0 +1,151 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+PrevPackage
+NextPackage
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Packageorg.apache.sling.maven.htl
+
+
+
+
+
+Class Summary
+
+Class
+Description
+
+
+
+HelpMojo
+
+Display help information on 

svn commit: r1804308 - /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:48:51 2017
New Revision: 1804308

URL: http://svn.apache.org/viewvc?rev=1804308=rev
Log:
Automatic svn path creation: 
https://svn.apache.org/repos/asf/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST

Added:

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/



svn commit: r1016496 - /websites/production/sling/content/

2017-08-07 Thread cziegeler
Author: cziegeler
Date: Mon Aug  7 09:47:06 2017
New Revision: 1016496

Log:
Test

Added:
websites/production/sling/content/
  - copied from r1016495, websites/staging/sling/trunk/content/



svn commit: r1016495 - /websites/production/sling/content/

2017-08-07 Thread cziegeler
Author: cziegeler
Date: Mon Aug  7 09:44:12 2017
New Revision: 1016495

Log:
Publishing svnmucc operation to sling site by cziegeler

Added:
websites/production/sling/content/
  - copied from r1016494, websites/staging/sling/trunk/content/



svn commit: r1016494 - /websites/production/sling/content/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:30:12 2017
New Revision: 1016494

Log:
Publishing svnmucc operation to sling site by radu

Added:
websites/production/sling/content/
  - copied from r1016493, websites/staging/sling/trunk/content/



svn commit: r1016493 - /websites/production/sling/content/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:28:24 2017
New Revision: 1016493

Log:
Publishing svnmucc operation to sling site by radu

Added:
websites/production/sling/content/
  - copied from r1016492, websites/staging/sling/trunk/content/



svn commit: r1016492 - /websites/production/sling/content/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:23:41 2017
New Revision: 1016492

Log:
Publishing svnmucc operation to sling site by radu

Added:
websites/production/sling/content/
  - copied from r1016491, websites/staging/sling/trunk/content/



buildbot failure in on sling-site-staging

2017-08-07 Thread buildbot
The Buildbot has detected a new failure on builder sling-site-staging while 
building . Full details are available at:
https://ci.apache.org/builders/sling-site-staging/builds/830

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: bb-cms-slave

Build Reason: The AnyBranchScheduler scheduler named 'on-sling-site-commit' 
triggered this build
Build Source Stamp: [branch sling/site] 1804305
Blamelist: radu

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot





svn commit: r1804305 - in /sling/site/trunk/content/components: htl-maven-plugin-archives/htl-maven-plugin-1.0.8/ htl-maven-plugin-archives/htl-maven-plugin-LATEST/ htl-maven-plugin/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:20:32 2017
New Revision: 1804305

URL: http://svn.apache.org/viewvc?rev=1804305=rev
Log:
Added HTL Maven Plugin 1.0.8 documentation

Added:
sling/site/trunk/content/components/htl-maven-plugin/
  - copied from r1804304, 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-1.0.8/
  - copied from r1804304, 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/
Removed:

sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/



svn commit: r1016491 [6/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/team-list.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/team-list.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/team-list.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,108 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Team
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team
+  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Project Team
+A successful project requires many people to play many roles. Some members 
write code or documentation, while others are valuable as testers, submitting 
patches and suggestions.
+The project team is comprised of Members and Contributors. Members have 
direct access to the source of a project and actively evolve the code-base. 
Contributors improve the project through submission of patches and suggestions 
to the Members. The number of Contributors to the project is unbounded. Get 
involved today. All contributions to the project are greatly appreciated.
+
+Members
+The following is a list of developers with commit privileges that have 
directly contributed to the project in one way or another.
+
+
+Id
+Name
+URL
+
+sling
+Apache Sling Project
+http://sling.apache.org/site/project-team.html;>http://sling.apache.org/site/project-team.html
+
+Contributors
+There are no contributors listed for this project. Please check back again 
later.
+
+  
+
+
+
+  
+
+Copyright 20072017
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+
+
+
+
\ No newline at end of file

Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/usage.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/usage.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/usage.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,123 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Usage
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage
+  
+  Project Documentation
+Project Information  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Usage
+
+Validating your HTL Scripts
+To validate your HTL Scripts you can run the following command:
+
+
+mvn 
org.apache.sling:htl-maven-plugin:validate
+
+This assumes youve configured the 
${project.build.sourceDirectory} setting.
+The command can be simplified to
+
+
+mvn htl:validate
+
+if your Maven user settings file provides the following configuration
+
+
+pluginGroups
+pluginGrouporg.apache.sling/pluginGroup
+/pluginGroups
+
+
+Configuring Your HTL Maven 
Plugin
+
+
+project
+...
+build
+pluginManagement
+plugin
+groupIdorg.apache.sling/groupId
+artifactIdhtl-maven-plugin/artifactId
+version1.0.8/version
+configuration
+!-- put your configurations here --
+/configuration
+executions
+execution
+goals
+goalvalidate/goal
+/goals
+

svn commit: r1016491 [4/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,121 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Dependency 
Information
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency 
Information
+  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Dependency Information
+
+Apache Maven
+dependency
+  groupIdorg.apache.sling/groupId
+  artifactIdhtl-maven-plugin/artifactId
+  version1.0.8/version
+  typemaven-plugin/type
+/dependency
+
+Apache Buildr
+'org.apache.sling:htl-maven-plugin:maven-plugin:1.0.8'
+
+Apache Ivy
+dependency 
org=org.apache.sling name=htl-maven-plugin 
rev=1.0.8
+  artifact name=htl-maven-plugin type=maven-plugin 
/
+/dependency
+
+Groovy Grape
+@Grapes(
+@Grab(group='org.apache.sling', module='htl-maven-plugin', version='1.0.8')
+)
+
+Gradle/Grails
+compile 
'org.apache.sling:htl-maven-plugin:1.0.8'
+
+Scala SBT
+libraryDependencies += 
org.apache.sling % htl-maven-plugin % 
1.0.8
+
+Leiningen
+[org.apache.sling/htl-maven-plugin 
1.0.8]
+
+  
+
+
+
+  
+
+Copyright 20072017
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+
+
+
+
\ No newline at end of file

Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,241 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Dependency 
Management
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency 
Management
+  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Project Dependency 
Management
+
+compile
+The following is a list of compile dependencies in the DependencyManagement 
of this project. These dependencies can be included in the submodules to 
compile and run the submodule:
+
+
+GroupId
+ArtifactId
+Version
+Type
+License
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-aether-provider/;>maven-aether-provider
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-compat/;>maven-compat
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-core/;>maven-core
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven

svn commit: r1016491 [3/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,2035 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Dependencies
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies
+  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+
+Project Dependencies
+
+compile
+The following is a list of compile dependencies for this project. These 
dependencies are required to compile and run the application:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+commons-io
+http://commons.apache.org/proper/commons-io/;>commons-io
+2.5
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+commons-lang
+http://commons.apache.org/lang/;>commons-lang
+2.5
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-artifact/;>maven-artifact
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-core/;>maven-core
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-plugin-api/;>maven-plugin-api
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.sling
+http://sling.apache.org/org.apache.sling.scripting.sightly.compiler;>org.apache.sling.scripting.sightly.compiler
+1.0.10
+jar
+https://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.codehaus.plexus
+http://codehaus-plexus.github.io/plexus-utils/;>plexus-utils
+3.0.24
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.sonatype.plexus
+http://forge.sonatype.com/spice-parent/plexus-build-api/;>plexus-build-api
+0.0.7
+jar
+http://www.apache.org/licenses/LICENSE-2.0;>Apache Public License 
2.0
+
+test
+The following is a list of test dependencies for this project. These 
dependencies are only required to compile and run unit tests for the 
application:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+junit
+http://junit.org;>junit
+4.12
+jar
+http://www.eclipse.org/legal/epl-v10.html;>Eclipse Public License 
1.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-compat/;>maven-compat
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven.plugin-testing
+http://maven.apache.org/plugin-testing/maven-plugin-testing-harness/;>maven-plugin-testing-harness
+3.3.0
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.codehaus.plexus
+http://plexus.codehaus.org/plexus-containers/plexus-container-default/;>plexus-container-default
+1.6
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>The Apache Software 
License, Version 2.0
+
+org.slf4j
+http://www.slf4j.org;>slf4j-simple
+1.7.6
+jar
+http://www.opensource.org/licenses/mit-license.php;>MIT 
License
+
+provided
+The following is a list of provided dependencies for this project. These 
dependencies are required to compile the application, but should be provided by 
default when using the library:
+
+
+GroupId
+ArtifactId
+Version
+Type
+Licenses
+
+org.apache.maven.plugin-tools
+http://maven.apache.org/plugin-tools/maven-plugin-annotations;>maven-plugin-annotations
+3.4
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.osgi
+http://www.osgi.org/;>org.osgi.service.component.annotations
+1.3.0
+jar
+http://opensource.org/licenses/apache2.0.php;>Apache License, Version 
2.0
+
+org.osgi

svn commit: r1016491 [5/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/license.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/license.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/license.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,299 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Licenses
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses
+  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Overview
+Typically the licenses listed for the project are that of the project 
itself, and not of dependencies.
+
+Project Licenses
+
+Apache License, Version 
2.0
+
+ Apache License
+   Version 2.0, January 2004
+http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+  License shall mean the terms and conditions for use, 
reproduction,
+  and distribution as defined by Sections 1 through 9 of this document.
+
+  Licensor shall mean the copyright owner or entity authorized 
by
+  the copyright owner that is granting the License.
+
+  Legal Entity shall mean the union of the acting entity and 
all
+  other entities that control, are controlled by, or are under common
+  control with that entity. For the purposes of this definition,
+  control means (i) the power, direct or indirect, to cause the
+  direction or management of such entity, whether by contract or
+  otherwise, or (ii) ownership of fifty percent (50%) or more of the
+  outstanding shares, or (iii) beneficial ownership of such entity.
+
+  You (or Your) shall mean an individual or Legal 
Entity
+  exercising permissions granted by this License.
+
+  Source form shall mean the preferred form for making 
modifications,
+  including but not limited to software source code, documentation
+  source, and configuration files.
+
+  Object form shall mean any form resulting from mechanical
+  transformation or translation of a Source form, including but
+  not limited to compiled object code, generated documentation,
+  and conversions to other media types.
+
+  Work shall mean the work of authorship, whether in Source or
+  Object form, made available under the License, as indicated by a
+  copyright notice that is included in or attached to the work
+  (an example is provided in the Appendix below).
+
+  Derivative Works shall mean any work, whether in Source or 
Object
+  form, that is based on (or derived from) the Work and for which the
+  editorial revisions, annotations, elaborations, or other modifications
+  represent, as a whole, an original work of authorship. For the purposes
+  of this License, Derivative Works shall not include works that remain
+  separable from, or merely link (or bind by name) to the interfaces of,
+  the Work and Derivative Works thereof.
+
+  Contribution shall mean any work of authorship, including
+  the original version of the Work and any modifications or additions
+  to that Work or Derivative Works thereof, that is intentionally
+  submitted to Licensor for inclusion in the Work by the copyright owner
+  or by an individual or Legal Entity authorized to submit on behalf of
+  the copyright owner. For the purposes of this definition, 
submitted
+  means any form of electronic, verbal, or written communication sent
+  to the Licensor or its representatives, including but not limited to
+  communication on electronic mailing lists, source code control systems,
+  and issue tracking systems that are managed by, or on behalf of, the
+  Licensor for the purpose of discussing and improving the Work, but
+  excluding communication that is conspicuously marked or otherwise
+  

svn commit: r1016491 [1/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Author: buildbot
Date: Mon Aug  7 09:16:48 2017
New Revision: 1016491

Log:
Staging update by buildbot for sling

Added:

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/allclasses-frame.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/allclasses-noframe.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/constant-values.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/deprecated-list.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/help-doc.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/index-all.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/index.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/HelpMojo.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/ValidateMojo.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/HelpMojo.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-tree.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-use.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/overview-tree.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/package-list

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/script.js

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/stylesheet.css

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/apache-maven-fluido-1.6.min.css

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/print.css

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/css/site.css

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependencies.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/distribution-management.html

websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/fonts/


svn commit: r1016491 [2/6] - in /websites/staging/sling/trunk/content: ./ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/ components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/api

2017-08-07 Thread buildbot
Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/class-use/ValidateMojo.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,124 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+Uses of Class org.apache.sling.maven.htl.ValidateMojo (Apache Sling HTL 
Maven Plugin 1.0.8 API)
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Uses of Classorg.apache.sling.maven.htl.ValidateMojo
+
+No usage of 
org.apache.sling.maven.htl.ValidateMojo
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+Copyright  20072017 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
+
\ No newline at end of file

Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,22 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+org.apache.sling.maven.htl
+
+Classes
+
+HelpMojo
+ValidateMojo
+
+
+
+
\ No newline at end of file

Added: 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
==
--- 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 (added)
+++ 
websites/staging/sling/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 Mon Aug  7 09:16:48 2017
@@ -0,0 +1,151 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+PrevPackage
+NextPackage
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Packageorg.apache.sling.maven.htl
+
+
+
+
+
+Class Summary
+
+Class
+Description
+
+
+
+HelpMojo
+
+Display help information on htl-maven-plugin.
+ Call mvn htl:help -Ddetail=true -Dgoal=goal-name to 
display parameter details.
+
+
+
+ValidateMojo
+
+Validates HTL scripts.
+
+
+
+
+
+
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+PrevPackage
+NextPackage
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Uses of Classorg.apache.sling.maven.htl.ValidateMojo
+
+No usage of 
org.apache.sling.maven.htl.ValidateMojo
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+Prev
+Next
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+Copyright  20072017 https://www.apache.org/;>The Apache Software Foundation. All rights 
reserved.
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html?rev=1804304=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-frame.html
 Mon Aug  7 09:16:00 2017
@@ -0,0 +1,22 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+org.apache.sling.maven.htl
+
+Classes
+
+HelpMojo
+ValidateMojo
+
+
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html?rev=1804304=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/apidocs/org/apache/sling/maven/htl/package-summary.html
 Mon Aug  7 09:16:00 2017
@@ -0,0 +1,151 @@
+http://www.w3.org/TR/html4/loose.dtd;>
+
+
+
+
+
+org.apache.sling.maven.htl (Apache Sling HTL Maven Plugin 1.0.8 
API)
+
+
+
+
+
+
+
+
+JavaScript is disabled on your browser.
+
+
+
+
+
+Skip navigation links
+
+
+
+
+Package
+Class
+Use
+Tree
+Deprecated
+Index
+Help
+
+
+
+
+PrevPackage
+NextPackage
+
+
+Frames
+NoFrames
+
+
+AllClasses
+
+
+
+
+
+
+
+
+
+
+Packageorg.apache.sling.maven.htl
+
+
+
+
+
+Class Summary
+
+Class
+Description
+
+
+
+HelpMojo
+
+Display help information on 

svn commit: r1804304 [4/7] - in /sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/sling/ apidocs/o

2017-08-07 Thread radu
Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html?rev=1804304=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-info.html
 Mon Aug  7 09:16:00 2017
@@ -0,0 +1,121 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Dependency 
Information
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency 
Information
+  
+Dependency Management  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Dependency Information
+
+Apache Maven
+dependency
+  groupIdorg.apache.sling/groupId
+  artifactIdhtl-maven-plugin/artifactId
+  version1.0.8/version
+  typemaven-plugin/type
+/dependency
+
+Apache Buildr
+'org.apache.sling:htl-maven-plugin:maven-plugin:1.0.8'
+
+Apache Ivy
+dependency 
org=org.apache.sling name=htl-maven-plugin 
rev=1.0.8
+  artifact name=htl-maven-plugin type=maven-plugin 
/
+/dependency
+
+Groovy Grape
+@Grapes(
+@Grab(group='org.apache.sling', module='htl-maven-plugin', version='1.0.8')
+)
+
+Gradle/Grails
+compile 
'org.apache.sling:htl-maven-plugin:1.0.8'
+
+Scala SBT
+libraryDependencies += 
org.apache.sling % htl-maven-plugin % 
1.0.8
+
+Leiningen
+[org.apache.sling/htl-maven-plugin 
1.0.8]
+
+  
+
+
+
+  
+
+Copyright 20072017
+https://www.apache.org/;>The Apache Software Foundation.
+All rights reserved.
+
+
+
+
+
\ No newline at end of file

Added: 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html?rev=1804304=auto
==
--- 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 (added)
+++ 
sling/site/trunk/content/components/htl-maven-plugin-archives/htl-maven-plugin-LATEST/dependency-management.html
 Mon Aug  7 09:16:00 2017
@@ -0,0 +1,241 @@
+
+
+http://www.w3.org/1999/xhtml; xml:lang="en" lang="en">
+  
+
+
+
+
+Apache Sling HTL Maven Plugin  Project Dependency 
Management
+
+
+
+  
+  
+
+  
+  
+Apache Sling HTL Maven 
Plugin
+
+
+
+
+  
+
+  
+
+Last Published: 2017-08-07|
+
+  Version: 1.0.8
+
+  
+  
+
+  
+
+  Overview
+Introduction  
+Goals  
+Usage 
 
+  Project Documentation
+Project Information
+  
+Dependencies  
+Dependency Information  
+Dependency 
Management
+  
+Distribution Management  
+About 
 
+Issue Management  
+Licenses  
+Mailing Lists  
+Plugin Management  
+Plugins  
+Team  
+Source Code Management  
+Summary  
+  
+  
+Project Reports  
+  
+  
+  
+  
+  
+  
+  
+  http://maven.apache.org/; title="Built by Maven" 
class="poweredBy">
+  
+  
+
+
+
+Project Dependency 
Management
+
+compile
+The following is a list of compile dependencies in the DependencyManagement 
of this project. These dependencies can be included in the submodules to 
compile and run the submodule:
+
+
+GroupId
+ArtifactId
+Version
+Type
+License
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-aether-provider/;>maven-aether-provider
+3.3.9
+jar
+http://www.apache.org/licenses/LICENSE-2.0.txt;>Apache License, Version 
2.0
+
+org.apache.maven
+http://maven.apache.org/ref/3.3.9/maven-compat/;>maven-compat
+3.3.9
+jar

svn commit: r1016490 - /websites/staging/sling/trunk/content/

2017-08-07 Thread buildbot
Author: buildbot
Date: Mon Aug  7 09:15:40 2017
New Revision: 1016490

Log:
Staging update by buildbot for sling

Modified:
websites/staging/sling/trunk/content/   (props changed)

Propchange: websites/staging/sling/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Aug  7 09:15:40 2017
@@ -1 +1 @@
-1804302
+1804303




svn commit: r1804302 - /sling/site/trunk/content/downloads.list

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:13:46 2017
New Revision: 1804302

URL: http://svn.apache.org/viewvc?rev=1804302=rev
Log:
CMS commit to sling by radu

Modified:
sling/site/trunk/content/downloads.list

Modified: sling/site/trunk/content/downloads.list
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/downloads.list?rev=1804302=1804301=1804302=diff
==
--- sling/site/trunk/content/downloads.list (original)
+++ sling/site/trunk/content/downloads.list Mon Aug  7 09:13:46 2017
@@ -180,9 +180,9 @@ Scripting JSP API Wrapper|org.apache.sli
 Scripting JSP Taglib|org.apache.sling.scripting.jsp.taglib|2.2.6
 Scripting JST|org.apache.sling.scripting.jst|2.0.6
 Scripting Groovy|org.apache.sling.scripting.groovy|1.0.2
-Scripting HTL Compiler|org.apache.sling.scripting.sightly.compiler|1.0.8
+Scripting HTL Compiler|org.apache.sling.scripting.sightly.compiler|1.0.10
 Scripting HTL Java 
Compiler|org.apache.sling.scripting.sightly.compiler.java|1.0.10
-Scripting HTL Engine|org.apache.sling.scripting.sightly|1.0.34
+Scripting HTL Engine|org.apache.sling.scripting.sightly|1.0.36
 Scripting HTL JavaScript Use 
Provider|org.apache.sling.scripting.sightly.js.provider|1.0.22
 Scripting HTL Sling Models Use 
Provider|org.apache.sling.scripting.sightly.models.provider|1.0.6
 Scripting HTL REPL|org.apache.sling.scripting.sightly.repl|1.0.4
@@ -231,4 +231,4 @@ JSPC Maven Plugin|jspc-maven-plugin|2.1.
 Maven Launchpad Plugin|maven-launchpad-plugin|2.3.4
 Maven Sling Plugin|maven-sling-plugin|2.3.0
 Slingstart Maven Plugin|slingstart-maven-plugin|1.7.6
-HTL Maven Plugin|htl-maven-plugin|1.0.6
+HTL Maven Plugin|htl-maven-plugin|1.0.8




svn commit: r1016488 - in /websites/staging/sling/trunk/content: ./ news.html

2017-08-07 Thread buildbot
Author: buildbot
Date: Mon Aug  7 09:12:47 2017
New Revision: 1016488

Log:
Staging update by buildbot for sling

Modified:
websites/staging/sling/trunk/content/   (props changed)
websites/staging/sling/trunk/content/news.html

Propchange: websites/staging/sling/trunk/content/
--
--- cms:source-revision (original)
+++ cms:source-revision Mon Aug  7 09:12:47 2017
@@ -1 +1 @@
-1804129
+1804301

Modified: websites/staging/sling/trunk/content/news.html
==
--- websites/staging/sling/trunk/content/news.html (original)
+++ websites/staging/sling/trunk/content/news.html Mon Aug  7 09:12:47 2017
@@ -116,6 +116,7 @@ h2:hover > .headerlink, h3:hover > .head
 }
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, 
h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, 
dt:hover > .elementid-permalink { visibility: visible }
 
+New Releases: Apache Sling Scripting HTL Engine 1.0.38, Apache Sling 
Scripting HTL Compiler 1.0.10, Apache Sling HTL Maven Plugin 1.0.8 (August 7th, 
2017)
 New Release: Apache Sling Launchpad Base 5.6.6-2.6.20 (August 3rd, 
2017)
 New Release: Apache Sling Resource Resolver 1.5.30 (July 27th, 2017)
 New Releases: Apache Sling Service User Mapper 1.3.4, Resource Resolver 
1.5.28, JCR Base 3.0.4, and JCR Resource 3.0.4 (July 21th, 2017)
@@ -613,7 +614,7 @@ Apache Sling Scripting Sightly JS Use Pr
 Apache Sling has graduated into a top level project! (June 17, 2009)
 
   
-Rev. 1804036 by pauls on Thu, 3 Aug 2017 18:59:34 +
+Rev. 1804301 by radu on Mon, 7 Aug 2017 09:12:21 +
   

 Apache Sling, Sling, Apache, the Apache feather logo, and the Apache 
Sling project




svn commit: r1804301 - /sling/site/trunk/content/news.mdtext

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 09:12:21 2017
New Revision: 1804301

URL: http://svn.apache.org/viewvc?rev=1804301=rev
Log:
CMS commit to sling by radu

Modified:
sling/site/trunk/content/news.mdtext

Modified: sling/site/trunk/content/news.mdtext
URL: 
http://svn.apache.org/viewvc/sling/site/trunk/content/news.mdtext?rev=1804301=1804300=1804301=diff
==
--- sling/site/trunk/content/news.mdtext (original)
+++ sling/site/trunk/content/news.mdtext Mon Aug  7 09:12:21 2017
@@ -1,5 +1,6 @@
 Title: News
 
+* New Releases: Apache Sling Scripting HTL Engine 1.0.38, Apache Sling 
Scripting HTL Compiler 1.0.10, Apache Sling HTL Maven Plugin 1.0.8 (August 7th, 
2017)
 * New Release: Apache Sling Launchpad Base 5.6.6-2.6.20 (August 3rd, 2017)
 * New Release: Apache Sling Resource Resolver 1.5.30 (July 27th, 2017)
 * New Releases: Apache Sling Service User Mapper 1.3.4, Resource Resolver 
1.5.28, JCR Base 3.0.4, and JCR Resource 3.0.4 (July 21th, 2017)




svn commit: r1804299 - in /sling/whiteboard/cziegeler: feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java feature-support/src/main/java/org/apache/sling/fe

2017-08-07 Thread cziegeler
Author: cziegeler
Date: Mon Aug  7 08:58:13 2017
New Revision: 1804299

URL: http://svn.apache.org/viewvc?rev=1804299=rev
Log:
Update framework version, reduse logging to debug

Modified:

sling/whiteboard/cziegeler/feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java

sling/whiteboard/cziegeler/feature-support/src/main/java/org/apache/sling/feature/support/FeatureUtil.java

Modified: 
sling/whiteboard/cziegeler/feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/cziegeler/feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java?rev=1804299=1804298=1804299=diff
==
--- 
sling/whiteboard/cziegeler/feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java
 (original)
+++ 
sling/whiteboard/cziegeler/feature-analyser/src/main/java/org/apache/sling/feature/scanner/impl/ContentPackageScanner.java
 Mon Aug  7 08:58:13 2017
@@ -75,7 +75,7 @@ public class ContentPackageScanner {
 final Set infos,
 final File archive)
 throws IOException {
-logger.info("Analyzing Content Package {}", archive.getName());
+logger.debug("Analyzing Content Package {}", archive.getName());
 
 final File tempDir = Files.createTempDirectory(null).toFile();
 try {

Modified: 
sling/whiteboard/cziegeler/feature-support/src/main/java/org/apache/sling/feature/support/FeatureUtil.java
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/cziegeler/feature-support/src/main/java/org/apache/sling/feature/support/FeatureUtil.java?rev=1804299=1804298=1804299=diff
==
--- 
sling/whiteboard/cziegeler/feature-support/src/main/java/org/apache/sling/feature/support/FeatureUtil.java
 (original)
+++ 
sling/whiteboard/cziegeler/feature-support/src/main/java/org/apache/sling/feature/support/FeatureUtil.java
 Mon Aug  7 08:58:13 2017
@@ -16,13 +16,6 @@
  */
 package org.apache.sling.feature.support;
 
-import org.apache.sling.feature.Application;
-import org.apache.sling.feature.ArtifactId;
-import org.apache.sling.feature.Feature;
-import org.apache.sling.feature.process.ApplicationBuilder;
-import org.apache.sling.feature.process.FeatureProvider;
-import org.apache.sling.feature.support.json.FeatureJSONReader;
-
 import java.io.File;
 import java.io.FileReader;
 import java.io.IOException;
@@ -32,6 +25,13 @@ import java.util.Collections;
 import java.util.Comparator;
 import java.util.List;
 
+import org.apache.sling.feature.Application;
+import org.apache.sling.feature.ArtifactId;
+import org.apache.sling.feature.Feature;
+import org.apache.sling.feature.process.ApplicationBuilder;
+import org.apache.sling.feature.process.FeatureProvider;
+import org.apache.sling.feature.support.json.FeatureJSONReader;
+
 public class FeatureUtil {
 
 /**
@@ -43,7 +43,7 @@ public class FeatureUtil {
 public static ArtifactId getFelixFrameworkId(final String version) {
 return new ArtifactId("org.apache.felix",
 "org.apache.felix.framework",
-version != null ? version : "5.6.4", null, null);
+version != null ? version : "5.6.6", null, null);
 }
 
 static final Comparator FEATURE_PATH_COMP = new 
Comparator() {




svn commit: r1804298 - /sling/trunk/launchpad/builder/src/main/provisioning/composum.txt

2017-08-07 Thread rombert
Author: rombert
Date: Mon Aug  7 08:56:20 2017
New Revision: 1804298

URL: http://svn.apache.org/viewvc?rev=1804298=rev
Log:
SLING-7032 - Update to Composum 1.8.1

Modified:
sling/trunk/launchpad/builder/src/main/provisioning/composum.txt

Modified: sling/trunk/launchpad/builder/src/main/provisioning/composum.txt
URL: 
http://svn.apache.org/viewvc/sling/trunk/launchpad/builder/src/main/provisioning/composum.txt?rev=1804298=1804297=1804298=diff
==
--- sling/trunk/launchpad/builder/src/main/provisioning/composum.txt (original)
+++ sling/trunk/launchpad/builder/src/main/provisioning/composum.txt Mon Aug  7 
08:56:20 2017
@@ -17,21 +17,14 @@
 #  under the License.
 [feature name=composum-console]
 [variables]
-composum.version=1.7.0 
+composum.version=1.8.1
 
 [artifacts startLevel=20]
 
   com.composum.sling.core/composum-sling-core-commons/${composum.version}
+  com.composum.sling.core/composum-sling-core-config/${composum.version}
   com.composum.sling.core/composum-sling-core-console/${composum.version}
   com.composum.sling.core/composum-sling-core-jslibs/${composum.version}
   com.composum.sling.core/composum-sling-user-management/${composum.version}
   com.composum.sling.core/composum-sling-package-manager/${composum.version}
   org.apache.jackrabbit.vault/org.apache.jackrabbit.vault/3.1.30
-
-[configurations]
-  org.apache.sling.jcr.base.internal.LoginAdminWhitelist.fragment-composum
-whitelist.name="composum"
-whitelist.bundles=[
-  "com.composum.core.commons",\
-  "com.composum.core.pckgmgr"\
-]




Nexus: Promotion Completed

2017-08-07 Thread Nexus Repository Manager
Message from: https://repository.apache.orgDeployer properties:"userAgent" = "Apache-Maven/3.5.0 (Java 1.8.0_131; Mac OS X 10.12.6)""userId" = "radu""ip" = "192.147.117.11"Details:The following artifacts have been promoted to the "Releases" [id=releases] repository/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-sources.jar(SHA1: 6a36c16b8a8d6509b8eb5eb661bd3df2d56349f2)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8.jar.asc(SHA1: f6873de1a2a86c2961e6f333daace7cc0c4a4232)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8.jar(SHA1: 9e2ec6a730db39ef36296faa958b06ebace8b420)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-source-release.zip(SHA1: 08bd1b2ca2cf43513aa39f99c7973c8458738152)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-source-release.zip.asc(SHA1: 1622827f8c57ac8f7f1e7dcae0e07f73a23e2116)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-sources.jar.asc(SHA1: f13ee802c2d53a3c8ebf08c2b285774fff18414c)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8.pom(SHA1: c12fa944837af2788fc0d6a81bbada484645abc2)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8.pom.asc(SHA1: 315793a4ce248981e3bddc093247f91b390a64c8)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-javadoc.jar.asc(SHA1: d6cee0096db1aed690ddd993e4b26ecf8525f29f)/org/apache/sling/htl-maven-plugin/1.0.8/htl-maven-plugin-1.0.8-javadoc.jar(SHA1: f9495b4af806da50ffe76ea20335fae016172500)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar.asc(SHA1: 320662ffda22a4b752fa56ecd3125c7ed6595a0a)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36.jar.asc(SHA1: d95d1c1d37af118ebc57aa95b570ef9f17156ca0)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-sources.jar(SHA1: b618dac67d62cc27e124b64bb21d36f9e81c26bc)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar(SHA1: 9f19a6cf336cb8ba71ed5babf82622733c5b1df0)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36.pom.asc(SHA1: 26e7ebc096fcd54bd6389a276a085228638cd539)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-source-release.zip(SHA1: f2cac49867288b3d5bfdfc75002d0fb2967fb072)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-source-release.zip.asc(SHA1: 052328c04174570b80960abe124e65de2ca98574)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36.pom(SHA1: 08933e77658963aec14a83612e20bed35854f409)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36-sources.jar.asc(SHA1: 3b8de75f90903becc99246fdd4ef04c520f842fb)/org/apache/sling/org.apache.sling.scripting.sightly/1.0.36/org.apache.sling.scripting.sightly-1.0.36.jar(SHA1: 5377d03a90e25ea1f337e02e77fc6998f24aa12b)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10.jar.asc(SHA1: ae75cd2995b1e39ca45c32532651aaa53dac1f09)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar(SHA1: f16d17b2a90faf898f58d262613606f048c8f4d1)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar.asc(SHA1: 95becc9bc04d3d55763fefd33ab50dfd3eabb495)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar(SHA1: ef77c4948ebb034ae2ea1171aba0dc56dc8344f2)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar.asc(SHA1: 907607f2dd0bbefe05fffdaa3554792e29e20ec6)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip.asc(SHA1: e0629f87ce3d38da6dcaff139768b79772d1a4ce)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip(SHA1: c842995ccf936375b221b981a1ce976afdaee49b)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10.pom.asc(SHA1: c1793b1f5ce552a4aa6144ddedfdb292c9500a06)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10.jar(SHA1: 0ecd2833883eb7b053824dccb258caaab07f5697)/org/apache/sling/org.apache.sling.scripting.sightly.compiler/1.0.10/org.apache.sling.scripting.sightly.compiler-1.0.10.pom(SHA1: 81a79ed95aee2b16d64269c5e44355dba656bc1d)Action performed by Radu Cotescu (radu)

svn commit: r20880 - /release/sling/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 08:26:06 2017
New Revision: 20880

Log:
Removed htl-maven-plugin 1.0.6, org.apache.sling.scripting.sightly 1.0.34, 
org.apache.sling.scripting.sightly.compiler 1.0.8

Removed:
release/sling/htl-maven-plugin-1.0.6-javadoc.jar
release/sling/htl-maven-plugin-1.0.6-javadoc.jar.asc
release/sling/htl-maven-plugin-1.0.6-javadoc.jar.md5
release/sling/htl-maven-plugin-1.0.6-javadoc.jar.sha1
release/sling/htl-maven-plugin-1.0.6-source-release.zip
release/sling/htl-maven-plugin-1.0.6-source-release.zip.asc
release/sling/htl-maven-plugin-1.0.6-source-release.zip.md5
release/sling/htl-maven-plugin-1.0.6-source-release.zip.sha1
release/sling/htl-maven-plugin-1.0.6-sources.jar
release/sling/htl-maven-plugin-1.0.6-sources.jar.asc
release/sling/htl-maven-plugin-1.0.6-sources.jar.md5
release/sling/htl-maven-plugin-1.0.6-sources.jar.sha1
release/sling/htl-maven-plugin-1.0.6.jar
release/sling/htl-maven-plugin-1.0.6.jar.asc
release/sling/htl-maven-plugin-1.0.6.jar.md5
release/sling/htl-maven-plugin-1.0.6.jar.sha1
release/sling/htl-maven-plugin-1.0.6.pom
release/sling/htl-maven-plugin-1.0.6.pom.asc
release/sling/htl-maven-plugin-1.0.6.pom.md5
release/sling/htl-maven-plugin-1.0.6.pom.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.34-javadoc.jar
release/sling/org.apache.sling.scripting.sightly-1.0.34-javadoc.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.34-javadoc.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.34-javadoc.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.34-source-release.zip

release/sling/org.apache.sling.scripting.sightly-1.0.34-source-release.zip.asc

release/sling/org.apache.sling.scripting.sightly-1.0.34-source-release.zip.md5

release/sling/org.apache.sling.scripting.sightly-1.0.34-source-release.zip.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.34-sources.jar
release/sling/org.apache.sling.scripting.sightly-1.0.34-sources.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.34-sources.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.34-sources.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.34.jar
release/sling/org.apache.sling.scripting.sightly-1.0.34.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.34.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.34.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.34.pom
release/sling/org.apache.sling.scripting.sightly-1.0.34.pom.asc
release/sling/org.apache.sling.scripting.sightly-1.0.34.pom.md5
release/sling/org.apache.sling.scripting.sightly-1.0.34.pom.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-javadoc.jar

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-javadoc.jar.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-javadoc.jar.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-javadoc.jar.sha1

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-source-release.zip

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-source-release.zip.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-source-release.zip.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-source-release.zip.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-sources.jar

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-sources.jar.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-sources.jar.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8-sources.jar.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.jar
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.jar.asc
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.jar.md5
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.jar.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.pom
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.pom.asc
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.pom.md5
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.8.pom.sha1



svn commit: r20879 - /release/sling/

2017-08-07 Thread radu
Author: radu
Date: Mon Aug  7 08:23:24 2017
New Revision: 20879

Log:
Added Apache Sling Scripting HTL Engine 1.0.38, Apache Sling Scripting HTL 
Compiler 1.0.10, Apache Sling HTL Maven Plugin 1.0.8

Added:
release/sling/htl-maven-plugin-1.0.8-javadoc.jar   (with props)
release/sling/htl-maven-plugin-1.0.8-javadoc.jar.asc
release/sling/htl-maven-plugin-1.0.8-javadoc.jar.md5
release/sling/htl-maven-plugin-1.0.8-javadoc.jar.sha1
release/sling/htl-maven-plugin-1.0.8-source-release.zip   (with props)
release/sling/htl-maven-plugin-1.0.8-source-release.zip.asc
release/sling/htl-maven-plugin-1.0.8-source-release.zip.md5
release/sling/htl-maven-plugin-1.0.8-source-release.zip.sha1
release/sling/htl-maven-plugin-1.0.8-sources.jar   (with props)
release/sling/htl-maven-plugin-1.0.8-sources.jar.asc
release/sling/htl-maven-plugin-1.0.8-sources.jar.md5
release/sling/htl-maven-plugin-1.0.8-sources.jar.sha1
release/sling/htl-maven-plugin-1.0.8.jar   (with props)
release/sling/htl-maven-plugin-1.0.8.jar.asc
release/sling/htl-maven-plugin-1.0.8.jar.md5
release/sling/htl-maven-plugin-1.0.8.jar.sha1
release/sling/htl-maven-plugin-1.0.8.pom
release/sling/htl-maven-plugin-1.0.8.pom.asc
release/sling/htl-maven-plugin-1.0.8.pom.md5
release/sling/htl-maven-plugin-1.0.8.pom.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar   (with 
props)
release/sling/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.36-javadoc.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.36-source-release.zip  
 (with props)

release/sling/org.apache.sling.scripting.sightly-1.0.36-source-release.zip.asc

release/sling/org.apache.sling.scripting.sightly-1.0.36-source-release.zip.md5

release/sling/org.apache.sling.scripting.sightly-1.0.36-source-release.zip.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.36-sources.jar   (with 
props)
release/sling/org.apache.sling.scripting.sightly-1.0.36-sources.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.36-sources.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.36-sources.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.36.jar   (with props)
release/sling/org.apache.sling.scripting.sightly-1.0.36.jar.asc
release/sling/org.apache.sling.scripting.sightly-1.0.36.jar.md5
release/sling/org.apache.sling.scripting.sightly-1.0.36.jar.sha1
release/sling/org.apache.sling.scripting.sightly-1.0.36.pom
release/sling/org.apache.sling.scripting.sightly-1.0.36.pom.asc
release/sling/org.apache.sling.scripting.sightly-1.0.36.pom.md5
release/sling/org.apache.sling.scripting.sightly-1.0.36.pom.sha1

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar   
(with props)

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-javadoc.jar.sha1

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip
   (with props)

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-source-release.zip.sha1

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar   
(with props)

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar.asc

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar.md5

release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10-sources.jar.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.jar   
(with props)
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.jar.asc
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.jar.md5
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.jar.sha1
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.pom
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.pom.asc
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.pom.md5
release/sling/org.apache.sling.scripting.sightly.compiler-1.0.10.pom.sha1

Added: release/sling/htl-maven-plugin-1.0.8-javadoc.jar
==
Binary file - no diff available.

Propchange: release/sling/htl-maven-plugin-1.0.8-javadoc.jar
--
svn:mime-type = application/octet-stream

Added: 

Jenkins build is back to normal : sling-testing-http-clients-1.8 #17

2017-08-07 Thread Apache Jenkins Server
See 




svn commit: r1804295 - /sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java

2017-08-07 Thread rombert
Author: rombert
Date: Mon Aug  7 08:09:35 2017
New Revision: 1804295

URL: http://svn.apache.org/viewvc?rev=1804295=rev
Log:
SLING-7029 - Extension - adding method to stop a bundle

Update exported version for org.apache.sling.testing.clients.osgi

Modified:

sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java

Modified: 
sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java
URL: 
http://svn.apache.org/viewvc/sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java?rev=1804295=1804294=1804295=diff
==
--- 
sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java
 (original)
+++ 
sling/trunk/testing/http/clients/src/main/java/org/apache/sling/testing/clients/osgi/package-info.java
 Mon Aug  7 08:09:35 2017
@@ -19,7 +19,7 @@
 /**
  * OSGI testing tools.
  */
-@Version("1.2.0")
+@Version("1.3.0")
 package org.apache.sling.testing.clients.osgi;
 
 import org.osgi.annotation.versioning.Version;




svn commit: r1804291 - /sling/whiteboard/cziegeler/pom.xml

2017-08-07 Thread pauls
Author: pauls
Date: Mon Aug  7 07:09:17 2017
New Revision: 1804291

URL: http://svn.apache.org/viewvc?rev=1804291=rev
Log:
Add builder pom

Added:
sling/whiteboard/cziegeler/pom.xml

Added: sling/whiteboard/cziegeler/pom.xml
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/cziegeler/pom.xml?rev=1804291=auto
==
--- sling/whiteboard/cziegeler/pom.xml (added)
+++ sling/whiteboard/cziegeler/pom.xml Mon Aug  7 07:09:17 2017
@@ -0,0 +1,68 @@
+
+
+http://maven.apache.org/POM/4.0.0; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd;>
+
+4.0.0
+
+
+org.apache
+apache
+17
+
+
+org.apache.sling
+sling-feature-builder
+pom
+1-SNAPSHOT
+
+Apache Sling Feature (Builder)
+
+Pseudo project to build the complete Apache Sling Feature project.
+
+
+2007
+
+
+Jira
+http://issues.apache.org/jira/browse/SLING
+
+
+
+
+
+scm:svn:http://svn.apache.org/repos/asf/sling/whiteboard/cziegeler
+
+
+scm:svn:https://svn.apache.org/repos/asf/sling/whiteboard/cziegeler
+
+http://svn.apache.org/viewvc/sling/whiteboard/cziegeler
+
+
+
+feature 
+feature-karaf
+feature-modelconverter
+osgifeature-maven-plugin
+feature-analyser
+feature-launcher
+feature-support   
+
+
+




svn commit: r1804290 - in /sling/whiteboard/cziegeler: feature-karaf/pom.xml feature-support/pom.xml

2017-08-07 Thread pauls
Author: pauls
Date: Mon Aug  7 07:08:59 2017
New Revision: 1804290

URL: http://svn.apache.org/viewvc?rev=1804290=rev
Log:
Fix name

Modified:
sling/whiteboard/cziegeler/feature-karaf/pom.xml
sling/whiteboard/cziegeler/feature-support/pom.xml

Modified: sling/whiteboard/cziegeler/feature-karaf/pom.xml
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/cziegeler/feature-karaf/pom.xml?rev=1804290=1804289=1804290=diff
==
--- sling/whiteboard/cziegeler/feature-karaf/pom.xml (original)
+++ sling/whiteboard/cziegeler/feature-karaf/pom.xml Mon Aug  7 07:08:59 2017
@@ -25,7 +25,7 @@
 0.0.1-SNAPSHOT
 bundle
 
-Apache Sling Feature
+Apache Sling Feature Karaf
 
 A feature describes an OSGi system
 

Modified: sling/whiteboard/cziegeler/feature-support/pom.xml
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/cziegeler/feature-support/pom.xml?rev=1804290=1804289=1804290=diff
==
--- sling/whiteboard/cziegeler/feature-support/pom.xml (original)
+++ sling/whiteboard/cziegeler/feature-support/pom.xml Mon Aug  7 07:08:59 2017
@@ -24,7 +24,7 @@
 0.0.1-SNAPSHOT
 bundle
 
-Apache Sling Feature Launcher
+Apache Sling Feature Support
 
 Support classes for the feature tools