You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by da...@apache.org on 2018/11/06 15:54:48 UTC

[sling-org-apache-sling-feature-analyser] branch master updated (162dfff -> 59270f5)

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

davidb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-analyser.git.


    from 162dfff  Use 0.2.1-SNAPSHOT for feature and feature io dep as 0.2.0 is not released yet
     add a26609d  SLING-8078 - New Analyser task which is able to detect Export-Package dependencies between regions
     add 72111a2  SLING-8078 - New Analyser task which is able to detect Export-Package dependencies between regions
     new 59270f5  Merge pull request #6 from apache/SLING-8078

The 1 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:
 .../task/impl/AbstractApiRegionsAnalyserTask.java  |  68 +++++++++
 .../feature/analyser/task/impl/ApiRegions.java     | 133 +++++++++++++++++
 .../analyser/task/impl/CheckApiRegions.java        | 158 +--------------------
 .../task/impl/CheckApiRegionsDependencies.java     |  71 +++++++++
 .../apache/sling/feature/scanner/PackageInfo.java  |  13 ++
 .../feature/scanner/impl/BundleDescriptorImpl.java |  17 ++-
 ...apache.sling.feature.analyser.task.AnalyserTask |   1 +
 ...ava => AbstractApiRegionsAnalyserTaskTest.java} |  46 +++---
 .../task/impl/CheckApiRegionsDependenciesTest.java |  49 +++++++
 .../analyser/task/impl/CheckApiRegionsTest.java    | 141 +-----------------
 10 files changed, 381 insertions(+), 316 deletions(-)
 create mode 100644 src/main/java/org/apache/sling/feature/analyser/task/impl/AbstractApiRegionsAnalyserTask.java
 create mode 100644 src/main/java/org/apache/sling/feature/analyser/task/impl/ApiRegions.java
 create mode 100644 src/main/java/org/apache/sling/feature/analyser/task/impl/CheckApiRegionsDependencies.java
 copy src/test/java/org/apache/sling/feature/analyser/task/impl/{CheckApiRegionsTest.java => AbstractApiRegionsAnalyserTaskTest.java} (82%)
 create mode 100644 src/test/java/org/apache/sling/feature/analyser/task/impl/CheckApiRegionsDependenciesTest.java


[sling-org-apache-sling-feature-analyser] 01/01: Merge pull request #6 from apache/SLING-8078

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

davidb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-feature-analyser.git

commit 59270f51d2939d74be829bbe11128c355d0f08ce
Merge: 162dfff 72111a2
Author: David Bosschaert <da...@gmail.com>
AuthorDate: Tue Nov 6 15:54:44 2018 +0000

    Merge pull request #6 from apache/SLING-8078
    
    SLING-8078 - New Analyser task which is able to detect Export-Package dependencies between regions
    
    Thanks for your pull request @simonetripodi - I guess we need to add a mechanism to make the region names that are being checked configurable, but that can be done in a separate pull request.

 .../task/impl/AbstractApiRegionsAnalyserTask.java  |  68 +++++++++
 .../feature/analyser/task/impl/ApiRegions.java     | 133 +++++++++++++++++
 .../analyser/task/impl/CheckApiRegions.java        | 158 +--------------------
 .../task/impl/CheckApiRegionsDependencies.java     |  71 +++++++++
 .../apache/sling/feature/scanner/PackageInfo.java  |  13 ++
 .../feature/scanner/impl/BundleDescriptorImpl.java |  17 ++-
 ...apache.sling.feature.analyser.task.AnalyserTask |   1 +
 ...ava => AbstractApiRegionsAnalyserTaskTest.java} |  46 +++---
 .../task/impl/CheckApiRegionsDependenciesTest.java |  49 +++++++
 .../analyser/task/impl/CheckApiRegionsTest.java    | 141 +-----------------
 10 files changed, 381 insertions(+), 316 deletions(-)