You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by gi...@apache.org on 2019/06/01 20:20:36 UTC

[sling-site] branch asf-site updated: Automatic website deployment

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/sling-site.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 906a746  Automatic website deployment
906a746 is described below

commit 906a746edfc4c50f3d61bc5952c6f147d3c2fee4
Author: jenkins <us...@infra.apache.org>
AuthorDate: Sat Jun 1 20:20:33 2019 +0000

    Automatic website deployment
---
 documentation/development/testing-paxexam.html | 25 +++++++++++++------------
 downloads.html                                 |  6 +++---
 releases.html                                  |  6 +++++-
 3 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/documentation/development/testing-paxexam.html b/documentation/development/testing-paxexam.html
index 66c9baa..bf80946 100644
--- a/documentation/development/testing-paxexam.html
+++ b/documentation/development/testing-paxexam.html
@@ -97,10 +97,11 @@
 <p>The setups and examples on this page show how to run fully isolated tests in separate JVMs (<a href="https://ops4j1.jira.com/wiki/spaces/PAXEXAM4/pages/54263862/OSGi+Containers#OSGiContainers-ForkedContainer">forked container</a>) to avoid classloader issues and boot a new Sling instance per test class to have always a fresh OSGi container and JCR repository.</p>
 <h2><a href="#features" name="features">Features</a></h2>
 <ul>
-  <li>run integration tests in a <em>tailored</em> Sling instance in the <em>same module</em> (with the build artifact under test)</li>
-  <li>use different versions in build (e.g. <em>minimal</em>) and tests (e.g. <em>latest</em>)</li>
-  <li>overriding of versions</li>
-  <li>build bundles with test content and OSGi DS services on-the-fly (no need for extra modules)</li>
+  <li>Run integration tests in a <em>tailored</em> Sling instance in the <em>same module</em> (with the build artifact under test)</li>
+  <li>Use different versions in build (e.g. <em>minimal</em>) and tests (e.g. <em>latest</em>)</li>
+  <li>Overriding of versions</li>
+  <li>Adjusting of provided <code>Option</code>s (<code>ModifiableCompositeOption</code>s – <a href="https://ops4j1.jira.com/browse/PAXEXAM-919">PAXEXAM-919</a>)</li>
+  <li>Build bundles with test content and OSGi DS services on-the-fly (no need for extra modules)</li>
 </ul>
 <h2><a href="#getting-started" name="getting-started">Getting Started</a></h2>
 <h3><a href="#1-add-required-dependencies" name="1-add-required-dependencies">1. Add required dependencies</a></h3>
@@ -109,7 +110,7 @@
 &lt;dependency&gt;
   &lt;groupId&gt;org.apache.sling&lt;/groupId&gt;
   &lt;artifactId&gt;org.apache.sling.testing.paxexam&lt;/artifactId&gt;
-  &lt;version&gt;2.0.0&lt;/version&gt;
+  &lt;version&gt;3.0.0&lt;/version&gt;
   &lt;scope&gt;provided&lt;/scope&gt;
 &lt;/dependency&gt;
 
@@ -117,7 +118,7 @@
 &lt;dependency&gt;
   &lt;groupId&gt;org.apache.felix&lt;/groupId&gt;
   &lt;artifactId&gt;org.apache.felix.framework&lt;/artifactId&gt;
-  &lt;version&gt;5.6.10&lt;/version&gt;
+  &lt;version&gt;6.0.3&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 
@@ -132,31 +133,31 @@
 &lt;dependency&gt;
   &lt;groupId&gt;org.ops4j.pax.exam&lt;/groupId&gt;
   &lt;artifactId&gt;pax-exam&lt;/artifactId&gt;
-  &lt;version&gt;4.11.0&lt;/version&gt;
+  &lt;version&gt;4.13.1&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 &lt;dependency&gt;
   &lt;groupId&gt;org.ops4j.pax.exam&lt;/groupId&gt;
   &lt;artifactId&gt;pax-exam-cm&lt;/artifactId&gt;
-  &lt;version&gt;4.11.0&lt;/version&gt;
+  &lt;version&gt;4.13.1&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 &lt;dependency&gt;
   &lt;groupId&gt;org.ops4j.pax.exam&lt;/groupId&gt;
   &lt;artifactId&gt;pax-exam-container-forked&lt;/artifactId&gt;
-  &lt;version&gt;4.11.0&lt;/version&gt;
+  &lt;version&gt;4.13.1&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 &lt;dependency&gt;
   &lt;groupId&gt;org.ops4j.pax.exam&lt;/groupId&gt;
   &lt;artifactId&gt;pax-exam-junit4&lt;/artifactId&gt;
-  &lt;version&gt;4.11.0&lt;/version&gt;
+  &lt;version&gt;4.13.1&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 &lt;dependency&gt;
   &lt;groupId&gt;org.ops4j.pax.exam&lt;/groupId&gt;
   &lt;artifactId&gt;pax-exam-link-mvn&lt;/artifactId&gt;
-  &lt;version&gt;4.11.0&lt;/version&gt;
+  &lt;version&gt;4.13.1&lt;/version&gt;
   &lt;scope&gt;test&lt;/scope&gt;
 &lt;/dependency&gt;
 </code></pre>
@@ -391,7 +392,7 @@ public class SimpleIT extends FreemarkerTestSupport {
 <p>For <a href="https://logback.qos.ch">Logback</a> use <code>SlingOptions#logback()</code> and add both <code>exam.properties</code> and <code>logback.xml</code> to <code>src/test/resources</code> as described in Pax Exam's <a href="https://ops4j1.jira.com/wiki/spaces/PAXEXAM4/pages/54263891/Logging+Configuration">Logging Configuration</a>.</p></section></div></div>            
             <footer class="footer">
 <div class="revisionInfo">
-                    Last modified by <span class="author">Oliver Lietz</span> on <span class="comment">Fri Jun 15 20:20:06 2018 +0200</span>
+                    Last modified by <span class="author">Oliver Lietz</span> on <span class="comment">Sat Jun 1 22:06:06 2019 +0200</span>
                 </div>                <p>
                     Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
                 </p><p>
diff --git a/downloads.html b/downloads.html
index 938f998..7b1d6f1 100644
--- a/downloads.html
+++ b/downloads.html
@@ -688,9 +688,9 @@
                                     </td></tr><tr><td>Testing OSGi Mock JUnit 5</td><td>2.4.8</td><td><a href="https://github.com/apache/sling-org-apache-sling-testing-osgi-mock">GitHub</a>
                                     </td><td><a href="[preferred]sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8.jar">Bundle</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8.jar.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8.jar.sha1">sha1</a>)
                                     </td><td><a href="[preferred]sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8-source-release.zip">Source ZIP</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8-source-release.zip.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.osgi-mock.junit5-2.4.8-source-release.zip.sha1">sha1</a>)
-                                    </td></tr><tr><td>Testing PaxExam</td><td>2.0.0</td><td><a href="https://github.com/apache/sling-org-apache-sling-testing-paxexam">GitHub</a>
-                                    </td><td><a href="[preferred]sling/org.apache.sling.testing.paxexam-2.0.0.jar">Bundle</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-2.0.0.jar.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-2.0.0.jar.sha1">sha1</a>)
-                                    </td><td><a href="[preferred]sling/org.apache.sling.testing.paxexam-2.0.0-source-release.zip">Source ZIP</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-2.0.0-source-release.zip.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-2.0.0-source-release.zip.sha1">sha1</a>)
+                                    </td></tr><tr><td>Testing PaxExam</td><td>3.0.0</td><td><a href="https://github.com/apache/sling-org-apache-sling-testing-paxexam">GitHub</a>
+                                    </td><td><a href="[preferred]sling/org.apache.sling.testing.paxexam-3.0.0.jar">Bundle</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-3.0.0.jar.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-3.0.0.jar.sha1">sha1</a>)
+                                    </td><td><a href="[preferred]sling/org.apache.sling.testing.paxexam-3.0.0-source-release.zip">Source ZIP</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-3.0.0-source-release.zip.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.paxexam-3.0.0-source-release.zip.sha1">sha1</a>)
                                     </td></tr><tr><td>Testing Rules</td><td>1.0.8</td><td><a href="https://github.com/apache/sling-org-apache-sling-testing-rules">GitHub</a>
                                     </td><td><a href="[preferred]sling/org.apache.sling.testing.rules-1.0.8.jar">Bundle</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.rules-1.0.8.jar.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.rules-1.0.8.jar.sha1">sha1</a>)
                                     </td><td><a href="[preferred]sling/org.apache.sling.testing.rules-1.0.8-source-release.zip">Source ZIP</a> (<a href="https://www.apache.org/dist/sling/org.apache.sling.testing.rules-1.0.8-source-release.zip.asc">asc</a>, <a href="https://www.apache.org/dist/sling/org.apache.sling.testing.rules-1.0.8-source-release.zip.sha1">sha1</a>)
diff --git a/releases.html b/releases.html
index 1f17e8c..8916ad8 100644
--- a/releases.html
+++ b/releases.html
@@ -70,6 +70,10 @@
             </div><h1 class="pagetitle">
                 Releases
             </h1><div class="row"><div class="small-12 columns"><section class="wrap"><p>This is a list of all our releases, available from our <a href="/downloads.cgi">downloads</a> page.</p>
+<h2><a href="#june-2019" name="june-2019">June 2019</a></h2>
+<ul>
+  <li>Testing PaxExam 3.0.0 (1st)</li>
+</ul>
 <h2><a href="#may-2019" name="may-2019">May 2019</a></h2>
 <ul>
   <li>Scripting Core 2.0.58 (27th)</li>
@@ -1890,7 +1894,7 @@
 </ul></section></div></div>
             <footer class="footer">
 <div class="revisionInfo">
-                    Last modified by <span class="author">Radu Cotescu</span> on <span class="comment">Mon May 27 11:06:22 2019 +0200</span>
+                    Last modified by <span class="author">Oliver Lietz</span> on <span class="comment">Sat Jun 1 22:06:06 2019 +0200</span>
                 </div>                <p>
                     Apache Sling, Sling, Apache, the Apache feather logo, and the Apache Sling project logo are trademarks of The Apache Software Foundation. All other marks mentioned may be trademarks or registered trademarks of their respective owners.
                 </p><p>