You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2019/12/02 13:21:31 UTC

[sling-slingfeature-maven-plugin] branch master updated (7cd5e3e -> c582c90)

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

rombert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git.


    from 7cd5e3e  Ignore the extract-extension goal in Eclipse
     new ee585e1  Fix version
     new c582c90  SLING-8870 - The number of errors per jar should be reported

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                                                             | 2 +-
 src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


[sling-slingfeature-maven-plugin] 02/02: SLING-8870 - The number of errors per jar should be reported

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git

commit c582c902b0ba0cf3729efefbcf372a66b435e75d
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Mon Dec 2 14:21:08 2019 +0100

    SLING-8870 - The number of errors per jar should be reported
---
 src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java b/src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java
index e5aa5a1..928e297 100644
--- a/src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java
+++ b/src/main/java/org/apache/sling/feature/maven/mojos/ApisJarMojo.java
@@ -468,7 +468,7 @@ public class ApisJarMojo extends AbstractIncludingFeatureMojo implements Artifac
             getLog().info("Verified " + apiType + " jar for region " + apiRegion.getName());
         } else {
             Collections.sort(missing);
-            getLog().info(apiType + " jar for region " + apiRegion.getName() + " has errors:");
+            getLog().info(apiType + " jar for region " + apiRegion.getName() + " has " + missing.size() + " errors:");
             for (final ApiExport m : missing) {
                 getLog().info("- Missing package " + m.getName() + " from bundle(s) "
                         + m.getProperties().get(PROPERTY_BUNDLE));


[sling-slingfeature-maven-plugin] 01/02: Fix version

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-slingfeature-maven-plugin.git

commit ee585e1cac26aec6d4401f670c8b89fdceee82f5
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Mon Dec 2 14:19:46 2019 +0100

    Fix version
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 4b1ce58..b3f13fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
     </parent>
 
     <artifactId>slingfeature-maven-plugin</artifactId>
-    <version>1.0.9-SNAPSHOT</version>
+    <version>1.1.11-SNAPSHOT</version>
     <packaging>maven-plugin</packaging>
 
     <name>Apache Sling OSGi Feature Maven Plugin</name>