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 2017/11/07 10:03:22 UTC

[sling-org-apache-sling-scripting-el-api] annotated tag org.apache.sling.scripting.el-api-1.0.0 created (now b659350)

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

rombert pushed a change to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git.


      at b659350  (tag)
 tagging f1069e113cb51c1d2399b4461196e95534c71eea (commit)
      by Oliver Lietz
      on Fri Mar 17 09:58:30 2017 +0000

- Log -----------------------------------------------------------------
org.apache.sling.scripting.el-api-1.0.0
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new 867688f  SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API
     new 964bf88  SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API
     new fecb1ce  rename el-wrapper to el-api
     new 3553cae  [maven-release-plugin] prepare release org.apache.sling.scripting.el-api-1.0.0
     new f1069e1  [maven-release-plugin] copy for tag org.apache.sling.scripting.el-api-1.0.0

The 5 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.


-- 
To stop receiving notification emails like this one, please contact
['"commits@sling.apache.org" <co...@sling.apache.org>'].

[sling-org-apache-sling-scripting-el-api] 01/05: SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API

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

rombert pushed a commit to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git

commit 867688ffae517c992dff6014be367509e1cdb293
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 10 18:06:54 2017 +0000

    SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-wrapper@1786401 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 77 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..98aee25
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one
+    or more contributor license agreements.  See the NOTICE file
+    distributed with this work for additional information
+    regarding copyright ownership.  The ASF licenses this file
+    to you under the Apache License, Version 2.0 (the
+    "License"); you may not use this file except in compliance
+    with the License.  You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing,
+    software distributed under the License is distributed on an
+    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+    KIND, either express or implied.  See the License for the
+    specific language governing permissions and limitations
+    under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.sling</groupId>
+    <artifactId>sling</artifactId>
+    <version>30</version>
+    <relativePath/>
+  </parent>
+
+  <artifactId>org.apache.sling.scripting.el-wrapper</artifactId>
+  <packaging>bundle</packaging>
+  <version>1.0.0-SNAPSHOT</version>
+
+  <name>Apache Sling Wrapper Bundle for Apache Tomcat EL API</name>
+  <description>This bundle wraps the Apache Tomcat 6.0.14 EL API used by Apache Sling Scripting JSP.</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jcr-wrapper</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jcr-wrapper</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/jcr-wrapper</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              javax.el;version=2.1
+            </Export-Package>
+            <Embed-Dependency>*;scope=compile</Embed-Dependency>
+            <_removeheaders>
+              Embedded-Artifacts,
+              Embed-Dependency,
+              Private-Package,
+              Include-Resource
+            </_removeheaders>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.tomcat</groupId>
+      <artifactId>el-api</artifactId>
+      <version>6.0.14</version>
+      <scope>compile</scope>
+    </dependency>
+  </dependencies>
+
+</project>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-scripting-el-api] 02/05: SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API

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

rombert pushed a commit to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git

commit 964bf88c845f235d00bd3230730ba5ae7da95043
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Thu Mar 16 20:59:35 2017 +0000

    SLING-6549 Provide bundle wrapping Apache Tomcat 6.0.14 EL API
    
    rename el-wrapper to el-api and fix SCM settings
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-wrapper@1787237 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 98aee25..ec84a69 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
     <relativePath/>
   </parent>
 
-  <artifactId>org.apache.sling.scripting.el-wrapper</artifactId>
+  <artifactId>org.apache.sling.scripting.el-api</artifactId>
   <packaging>bundle</packaging>
   <version>1.0.0-SNAPSHOT</version>
 
@@ -36,9 +36,9 @@
   <description>This bundle wraps the Apache Tomcat 6.0.14 EL API used by Apache Sling Scripting JSP.</description>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jcr-wrapper</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/jcr/jcr-wrapper</developerConnection>
-    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/jcr/jcr-wrapper</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/el-api</url>
   </scm>
 
   <build>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-scripting-el-api] 05/05: [maven-release-plugin] copy for tag org.apache.sling.scripting.el-api-1.0.0

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

rombert pushed a commit to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git

commit f1069e113cb51c1d2399b4461196e95534c71eea
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 17 09:58:30 2017 +0000

    [maven-release-plugin] copy for tag org.apache.sling.scripting.el-api-1.0.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.el-api-1.0.0@1787315 13f79535-47bb-0310-9956-ffa450edef68

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-scripting-el-api] 03/05: rename el-wrapper to el-api

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

rombert pushed a commit to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git

commit fecb1ce05ff224cb7a7407eb7c989c529f4c4069
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Thu Mar 16 21:00:43 2017 +0000

    rename el-wrapper to el-api
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api@1787240 13f79535-47bb-0310-9956-ffa450edef68

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.

[sling-org-apache-sling-scripting-el-api] 04/05: [maven-release-plugin] prepare release org.apache.sling.scripting.el-api-1.0.0

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

rombert pushed a commit to annotated tag org.apache.sling.scripting.el-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-el-api.git

commit 3553cae392565f53a2f9ab03ab828f0a376fe394
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 17 09:58:16 2017 +0000

    [maven-release-plugin] prepare release org.apache.sling.scripting.el-api-1.0.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api@1787314 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index ec84a69..2247a81 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,20 +25,20 @@
     <groupId>org.apache.sling</groupId>
     <artifactId>sling</artifactId>
     <version>30</version>
-    <relativePath/>
+    <relativePath />
   </parent>
 
   <artifactId>org.apache.sling.scripting.el-api</artifactId>
   <packaging>bundle</packaging>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
 
   <name>Apache Sling Wrapper Bundle for Apache Tomcat EL API</name>
   <description>This bundle wraps the Apache Tomcat 6.0.14 EL API used by Apache Sling Scripting JSP.</description>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/el-api</developerConnection>
-    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/el-api</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.el-api-1.0.0</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.el-api-1.0.0</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.scripting.el-api-1.0.0</url>
   </scm>
 
   <build>

-- 
To stop receiving notification emails like this one, please contact
"commits@sling.apache.org" <co...@sling.apache.org>.