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:07:11 UTC

[sling-org-apache-sling-scripting-jsp-api] annotated tag org.apache.sling.scripting.jsp-api-1.0.0 created (now 95c1980)

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

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


      at 95c1980  (tag)
 tagging 81f54c7645e5b8136576e9354b30dc615900babb (commit)
      by Oliver Lietz
      on Fri Mar 17 09:53:40 2017 +0000

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

This annotated tag includes the following new commits:

     new df7e230  SLING-6548 Provide bundle wrapping Apache Tomcat 6.0.14 JSP API
     new 0c4b254  fix scope
     new 097a014  SLING-6548 Provide bundle wrapping Apache Tomcat 6.0.14 JSP API
     new 03759c0  rename jsp-wrapper to jsp-api
     new 0e72a12  [maven-release-plugin] prepare release org.apache.sling.scripting.jsp-api-1.0.0
     new 81f54c7  [maven-release-plugin] copy for tag org.apache.sling.scripting.jsp-api-1.0.0

The 6 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-jsp-api] 01/06: SLING-6548 Provide bundle wrapping Apache Tomcat 6.0.14 JSP 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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

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

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

diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..48d1aff
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,80 @@
+<?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.jsp-wrapper</artifactId>
+  <packaging>bundle</packaging>
+  <version>1.0.0-SNAPSHOT</version>
+
+  <name>Apache Sling Wrapper Bundle for Apache Tomcat JSP API</name>
+  <description>This bundle wraps the Apache Tomcat 6.0.14 JSP API used by Apache Sling Scripting JSP.</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-wrapper</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-wrapper</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp-wrapper</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              javax.servlet.jsp;
+              javax.servlet.jsp.el;
+              javax.servlet.jsp.resources;
+              javax.servlet.jsp.tagext;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>jsp-api</artifactId>
+      <version>6.0.14</version>
+      <scope>provided</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-jsp-api] 02/06: fix scope

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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 0c4b2542484d6c778210c6ecde68e4ff41e695f3
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Sun Mar 12 18:29:42 2017 +0000

    fix scope
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-wrapper@1786605 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 48d1aff..3cd2d55 100644
--- a/pom.xml
+++ b/pom.xml
@@ -73,7 +73,7 @@
       <groupId>org.apache.tomcat</groupId>
       <artifactId>jsp-api</artifactId>
       <version>6.0.14</version>
-      <scope>provided</scope>
+      <scope>compile</scope>
     </dependency>
   </dependencies>
 

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

[sling-org-apache-sling-scripting-jsp-api] 06/06: [maven-release-plugin] copy for tag org.apache.sling.scripting.jsp-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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 81f54c7645e5b8136576e9354b30dc615900babb
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 17 09:53:40 2017 +0000

    [maven-release-plugin] copy for tag org.apache.sling.scripting.jsp-api-1.0.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.jsp-api-1.0.0@1787312 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-jsp-api] 03/06: SLING-6548 Provide bundle wrapping Apache Tomcat 6.0.14 JSP 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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 097a01400ea8086cbd21fd624696c592afe3c4b8
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Thu Mar 16 20:58:18 2017 +0000

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

diff --git a/pom.xml b/pom.xml
index 3cd2d55..fc03bd5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
     <relativePath/>
   </parent>
 
-  <artifactId>org.apache.sling.scripting.jsp-wrapper</artifactId>
+  <artifactId>org.apache.sling.scripting.jsp-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 JSP API used by Apache Sling Scripting JSP.</description>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-wrapper</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-wrapper</developerConnection>
-    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp-wrapper</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-api</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-api</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp-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-jsp-api] 04/06: rename jsp-wrapper to jsp-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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

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

    rename jsp-wrapper to jsp-api
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-api@1787239 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-jsp-api] 05/06: [maven-release-plugin] prepare release org.apache.sling.scripting.jsp-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.jsp-api-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 0e72a129ae5578d687ea1f45b0fc286e5eba5cc3
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 17 09:53:26 2017 +0000

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

diff --git a/pom.xml b/pom.xml
index fc03bd5..8ff4ef2 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.jsp-api</artifactId>
   <packaging>bundle</packaging>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.0</version>
 
   <name>Apache Sling Wrapper Bundle for Apache Tomcat JSP API</name>
   <description>This bundle wraps the Apache Tomcat 6.0.14 JSP API used by Apache Sling Scripting JSP.</description>
 
   <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-api</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/scripting/jsp-api</developerConnection>
-    <url>http://svn.apache.org/viewvc/sling/trunk/bundles/scripting/jsp-api</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.jsp-api-1.0.0</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.scripting.jsp-api-1.0.0</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/tags/org.apache.sling.scripting.jsp-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>.