You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by kw...@apache.org on 2022/09/30 10:06:47 UTC

[sling-ide-tooling] branch feature/m2e-2.x-compatibility updated (c0fedc22 -> fa529b6d)

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

kwin pushed a change to branch feature/m2e-2.x-compatibility
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git


    from c0fedc22 Update copyright year
     add fa529b6d remove OSGi dependencies from shared

No new revisions were added by this update.

Summary of changes:
 build.sh                                           |  16 +-
 .../org/apache/sling/ide/cli/impl/ContentSync.java |   3 +-
 eclipse/p2update/pom.xml                           |  26 +
 shared/MANIFEST.MF                                 |  39 --
 shared/api/pom.xml                                 | 157 ++++-
 .../java/org/apache/sling/ide/osgi/OsgiClient.java |  12 +-
 .../apache/sling/ide/osgi/OsgiClientException.java |   6 +
 .../apache/sling/ide/osgi/impl/HttpOsgiClient.java | 741 ++++++++++-----------
 .../sling/ide/osgi/impl/HttpOsgiClientFactory.java |  33 +-
 .../sling/ide/osgi/impl/TracingOsgiClient.java     | 118 ----
 .../content/impl/DefaultSyncCommandFactory.java    |  13 +-
 .../apache/sling/ide/transport/RepositoryInfo.java |  25 +-
 .../apache/sling/ide/transport/TracingCommand.java |  92 ---
 .../sling/ide/osgi/impl/HttpOsgiClientIT.java      | 125 ++++
 .../org/apache/sling/ide/util}/Slf4jLogger.java    |   2 +-
 shared/artifacts/pom.xml                           |  23 -
 .../ide/artifacts/impl/ArtifactsLocatorImpl.java   |  22 +-
 shared/filevault-uber-jar/pom.xml                  |  20 -
 shared/impl-resource/pom.xml                       |  15 -
 .../resource/{filer => filter}/SimpleFilter.java   |   2 +-
 .../{filer => filter}/SimpleFilterLocator.java     |   2 +-
 .../impl/resource/transport/AbstractCommand.java   |   2 +-
 .../impl/resource/transport/GetNodeCommand.java    |   2 +-
 .../resource/transport/GetNodeContentCommand.java  |   2 +-
 .../resource/transport/ListChildrenCommand.java    |   2 +-
 .../resource/transport/RepositoryFactoryImpl.java  |  29 +-
 .../impl/resource/transport/RepositoryImpl.java    |  30 +-
 shared/impl-vlt/bnd.bnd                            |  29 +
 shared/impl-vlt/pom.xml                            |  92 ++-
 .../apache/sling/ide/impl/vlt/ListTreeCommand.java |  26 +-
 .../apache/sling/ide/impl/vlt/VltRepository.java   |  36 +-
 .../sling/ide/impl/vlt/VltRepositoryFactory.java   |  28 +-
 .../org/apache/sling/ide/jcr/RepositoryUtils.java  |   3 +-
 ...mandTest.java => AddOrUpdateNodeCommandIT.java} |   2 +-
 ...ndTest.java => ReorderChildNodesCommandIT.java} |   2 +-
 shared/parent/pom.xml                              | 171 ++---
 shared/sync-fs/pom.xml                             |   9 -
 37 files changed, 926 insertions(+), 1031 deletions(-)
 delete mode 100644 shared/MANIFEST.MF
 delete mode 100644 shared/api/src/main/java/org/apache/sling/ide/osgi/impl/TracingOsgiClient.java
 delete mode 100644 shared/api/src/main/java/org/apache/sling/ide/transport/TracingCommand.java
 create mode 100644 shared/api/src/test/java/org/apache/sling/ide/osgi/impl/HttpOsgiClientIT.java
 copy shared/{impl-vlt/src/test/java/org/apache/sling/ide/impl/vlt => api/src/test/java/org/apache/sling/ide/util}/Slf4jLogger.java (98%)
 rename shared/impl-resource/src/main/java/org/apache/sling/ide/impl/resource/{filer => filter}/SimpleFilter.java (97%)
 rename shared/impl-resource/src/main/java/org/apache/sling/ide/impl/resource/{filer => filter}/SimpleFilterLocator.java (97%)
 rename shared/impl-vlt/src/test/java/org/apache/sling/ide/impl/vlt/{AddOrUpdateNodeCommandTest.java => AddOrUpdateNodeCommandIT.java} (99%)
 rename shared/impl-vlt/src/test/java/org/apache/sling/ide/impl/vlt/{ReorderChildNodesCommandTest.java => ReorderChildNodesCommandIT.java} (98%)