You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2020/03/04 10:26:34 UTC

[felix-dev] branch master updated: Add readmes and update dependencies

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

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git


The following commit(s) were added to refs/heads/master by this push:
     new cdb4706  Add readmes and update dependencies
cdb4706 is described below

commit cdb47060c052a10368fd8a3bb760ab7067235f67
Author: Carsten Ziegeler <cz...@apache.org>
AuthorDate: Wed Mar 4 11:26:00 2020 +0100

    Add readmes and update dependencies
---
 tools/maven-scr-plugin/README.md                              | 5 +++++
 tools/maven-scr-plugin/src/it/basic-build-it/pom.xml          | 2 +-
 tools/maven-scr-plugin/src/it/external-annotations-it/pom.xml | 2 +-
 tools/org.apache.felix.scr.annotations/README.md              | 5 +++++
 tools/org.apache.felix.scr.ant/README.md                      | 4 ++++
 tools/org.apache.felix.scr.ant/pom.xml                        | 4 ++--
 tools/org.apache.felix.scr.bnd/README.md                      | 5 +++++
 tools/org.apache.felix.scr.ds-annotations/README.md           | 5 +++++
 tools/org.apache.felix.scr.generator/README.md                | 4 ++++
 9 files changed, 32 insertions(+), 4 deletions(-)

diff --git a/tools/maven-scr-plugin/README.md b/tools/maven-scr-plugin/README.md
new file mode 100644
index 0000000..f29a515
--- /dev/null
+++ b/tools/maven-scr-plugin/README.md
@@ -0,0 +1,5 @@
+# Apache Felix Maven SCR Plugin
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+
+This plugin processes the Apache Felix SCR annotations and creates XML descriptor files for OSGi Declarative services. The SCR annotations only support the features of OSGi R5 Declarative Services, but not newer features like constructor or field injection.
diff --git a/tools/maven-scr-plugin/src/it/basic-build-it/pom.xml b/tools/maven-scr-plugin/src/it/basic-build-it/pom.xml
index bb28490..c811004 100644
--- a/tools/maven-scr-plugin/src/it/basic-build-it/pom.xml
+++ b/tools/maven-scr-plugin/src/it/basic-build-it/pom.xml
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.api</artifactId>
-            <version>2.2.0</version>
+            <version>2.9.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
diff --git a/tools/maven-scr-plugin/src/it/external-annotations-it/pom.xml b/tools/maven-scr-plugin/src/it/external-annotations-it/pom.xml
index 0e2a125..10df797 100644
--- a/tools/maven-scr-plugin/src/it/external-annotations-it/pom.xml
+++ b/tools/maven-scr-plugin/src/it/external-annotations-it/pom.xml
@@ -80,7 +80,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.api</artifactId>
-            <version>2.2.0</version>
+            <version>2.9.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
diff --git a/tools/org.apache.felix.scr.annotations/README.md b/tools/org.apache.felix.scr.annotations/README.md
new file mode 100644
index 0000000..33141b8
--- /dev/null
+++ b/tools/org.apache.felix.scr.annotations/README.md
@@ -0,0 +1,5 @@
+# Apache Felix SCR Annotations
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+
+The SCR annotations only support the features of OSGi R5 Declarative Services, but not newer features like constructor or field injection.
diff --git a/tools/org.apache.felix.scr.ant/README.md b/tools/org.apache.felix.scr.ant/README.md
new file mode 100644
index 0000000..28a28e9
--- /dev/null
+++ b/tools/org.apache.felix.scr.ant/README.md
@@ -0,0 +1,4 @@
+# Apache Felix SCR Ant
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+
diff --git a/tools/org.apache.felix.scr.ant/pom.xml b/tools/org.apache.felix.scr.ant/pom.xml
index 5cdc98c..3c3368a 100644
--- a/tools/org.apache.felix.scr.ant/pom.xml
+++ b/tools/org.apache.felix.scr.ant/pom.xml
@@ -52,13 +52,13 @@
         <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant</artifactId>
-            <version>1.7.0</version>
+            <version>1.9.7</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.scr.generator</artifactId>
-            <version>1.18.1-SNAPSHOT</version>
+            <version>1.18.5-SNAPSHOT</version>
             <scope>compile</scope>
         </dependency>
         <dependency>
diff --git a/tools/org.apache.felix.scr.bnd/README.md b/tools/org.apache.felix.scr.bnd/README.md
new file mode 100644
index 0000000..0254000
--- /dev/null
+++ b/tools/org.apache.felix.scr.bnd/README.md
@@ -0,0 +1,5 @@
+# Apache Felix SCR BND Plugin
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+
+This plugin processes the Apache Felix SCR annotations and creates XML descriptor files for OSGi Declarative services. The SCR annotations only support the features of OSGi R5 Declarative Services, but not newer features like constructor or field injection.
diff --git a/tools/org.apache.felix.scr.ds-annotations/README.md b/tools/org.apache.felix.scr.ds-annotations/README.md
new file mode 100644
index 0000000..ca43cd6
--- /dev/null
+++ b/tools/org.apache.felix.scr.ds-annotations/README.md
@@ -0,0 +1,5 @@
+# Apache Felix SCR DS Annotations
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+
+The SCR annotations only support the features of OSGi R5 Declarative Services, but not newer features like constructor or field injection.
diff --git a/tools/org.apache.felix.scr.generator/README.md b/tools/org.apache.felix.scr.generator/README.md
new file mode 100644
index 0000000..663bb38
--- /dev/null
+++ b/tools/org.apache.felix.scr.generator/README.md
@@ -0,0 +1,4 @@
+# Apache Felix SCR Generator
+
+> **Note** This project is deprecated as it is superceeded by the usage of the official OSGi annotations together with the maven-bundle-plugin or the bnd-maven-plugin. 
+