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/10/18 23:22:01 UTC

[sling-org-apache-sling-scripting-jsp-api] branch master created (now d539b33)

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

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


      at d539b33  SLING-7167 Adjust READMEs

This branch includes the following new commits:

     new 871652b  rename jsp-wrapper to jsp-api
     new e37b0b1  [maven-release-plugin] prepare release org.apache.sling.scripting.jsp-api-1.0.0
     new 1254596  [maven-release-plugin] prepare for next development iteration
     new d539b33  SLING-7167 Adjust READMEs

The 4 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] 04/04: SLING-7167 Adjust READMEs

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit d539b33fcad65aa83fc213834c5d33d07c7627d4
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Tue Oct 3 09:26:15 2017 +0000

    SLING-7167 Adjust READMEs
    
    add missing README
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1810719 13f79535-47bb-0310-9956-ffa450edef68
---
 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8ed5ebd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# Apache Sling Wrapper Bundle for Apache Tomcat JSP API
+
+This module is part of the [Apache Sling](https://sling.apache.org) 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] 01/04: 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 branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 871652b157833b778df8c36676e011348607effc
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@1787239 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..fc03bd5
--- /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-api</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-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>
+    <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>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-jsp-api] 03/04: [maven-release-plugin] prepare for next development iteration

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

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit 12545967469c7f8a635d7ac7afadfc7a1c7a18f4
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Fri Mar 17 09:53:42 2017 +0000

    [maven-release-plugin] prepare for next development iteration
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1787313 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 8ff4ef2..2231f26 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,15 +30,15 @@
 
   <artifactId>org.apache.sling.scripting.jsp-api</artifactId>
   <packaging>bundle</packaging>
-  <version>1.0.0</version>
+  <version>1.0.1-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/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>
+    <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] 02/04: [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 branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-scripting-jsp-api.git

commit e37b0b18bcfe5eda978223a93e71dec5d9965e38
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@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>.