You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2019/12/16 20:56:40 UTC

[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] branch master updated (25514de -> bbb8f1f)

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

olli pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git.


    from 25514de  SLING-8685 Rename feature sling-scripting-sightly to sling-scripting-htl
     new 515e0af  do not fail on missing baseline
     new bbb8f1f  make Java 8 minimum for ITs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)


[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] 01/02: do not fail on missing baseline

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git

commit 515e0aff2d32bfeb2650823cdf089ea37531fae4
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Mon Dec 16 21:52:37 2019 +0100

    do not fail on missing baseline
---
 pom.xml | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/pom.xml b/pom.xml
index b28ffca..49bac16 100644
--- a/pom.xml
+++ b/pom.xml
@@ -195,15 +195,11 @@
     <plugins>
       <plugin>
         <groupId>biz.aQute.bnd</groupId>
-        <artifactId>bnd-maven-plugin</artifactId>
-      </plugin>
-      <!-- enable baseline after initial release -->
-      <!--
-      <plugin>
-        <groupId>biz.aQute.bnd</groupId>
         <artifactId>bnd-baseline-maven-plugin</artifactId>
+        <configuration>
+          <failOnMissing>false</failOnMissing>
+        </configuration>
       </plugin>
-      -->
     </plugins>
   </build>
 


[sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests] 02/02: make Java 8 minimum for ITs

Posted by ol...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-karaf-launchpad-oak-tar-integration-tests.git

commit bbb8f1f7b14cc6f1a5f776d555508f1ac5a537f8
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Mon Dec 16 21:54:14 2019 +0100

    make Java 8 minimum for ITs
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 49bac16..b1016ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -207,7 +207,7 @@
     <profile>
       <id>it</id>
       <activation>
-        <jdk>[1.7,)</jdk>
+        <jdk>[1.8,)</jdk>
       </activation>
       <build>
         <plugins>