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 09:25:02 UTC

[sling-org-apache-sling-crankstart-test-services] annotated tag org.apache.sling.crankstart.test.services-1.0.0 created (now 5c37acc)

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

rombert pushed a change to annotated tag org.apache.sling.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git.


      at 5c37acc  (tag)
 tagging fac148202ccbdf284d2f80f6aab2d7a53c8c1ccc (commit)
      by Bertrand Delacretaz
      on Mon Sep 1 14:05:15 2014 +0000

- Log -----------------------------------------------------------------
org.apache.sling.crankstart.test.services-1.0.0
-----------------------------------------------------------------------

This annotated tag includes the following new commits:

     new e5ab36a  SLING-3528 - add test-services to prepare for config command testing
     new d869ca7  SLING-3528 - test the config command in CrankstartBootstrapTest
     new bb2799a  Add extension command support, with test in SystemPropertyCommand and launcher-test.crank.txt
     new 74809d7  Add missing parent pom relativePath elements
     new 0c657a3  Register resources with the Sling installer via a crankstart extension command
     new cdce42c  Add scm info
     new 0f69df8  Use released API
     new c4a1c08  [maven-release-plugin] prepare release org.apache.sling.crankstart.test.services-1.0.0
     new fac1482  [maven-release-plugin]  copy for tag org.apache.sling.crankstart.test.services-1.0.0

The 9 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-crankstart-test-services] 03/09: Add extension command support, with test in SystemPropertyCommand and launcher-test.crank.txt

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit bb2799ab5e6dff4f23a950ec00dfaf6d9ebcaa6b
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Fri May 16 14:50:49 2014 +0000

    Add extension command support, with test in SystemPropertyCommand and launcher-test.crank.txt
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1595220 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml                                            | 10 ++++
 .../testservices/SystemPropertyCommand.java        | 59 ++++++++++++++++++++++
 2 files changed, 69 insertions(+)

diff --git a/pom.xml b/pom.xml
index 8244d96..67552bc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,6 +27,10 @@
                 <configuration>
                     <instructions>
                         <Private-Package>org.apache.sling.crankstart.*</Private-Package>
+                        <Import-Package>
+                            org.apache.sling.crankstart.api,
+                            *
+                        </Import-Package>
                     </instructions>
                 </configuration>
             </plugin>
@@ -52,6 +56,12 @@
             <version>2.2.0</version>
         </dependency>
         <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.crankstart.api</artifactId>
+            <version>${project.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
             <groupId>javax.servlet</groupId>
             <artifactId>servlet-api</artifactId>
             <scope>provided</scope>
diff --git a/src/main/java/org/apache/sling/crankstart/testservices/SystemPropertyCommand.java b/src/main/java/org/apache/sling/crankstart/testservices/SystemPropertyCommand.java
new file mode 100644
index 0000000..40c9e67
--- /dev/null
+++ b/src/main/java/org/apache/sling/crankstart/testservices/SystemPropertyCommand.java
@@ -0,0 +1,59 @@
+/*
+ * 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.
+ */
+package org.apache.sling.crankstart.testservices;
+
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.Service;
+import org.apache.sling.crankstart.api.CrankstartCommand;
+import org.apache.sling.crankstart.api.CrankstartCommandLine;
+import org.apache.sling.crankstart.api.CrankstartContext;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/** CrankstartCommand provided by our test-services bundle
+ *  to test crankstart extensions commands provided by OSGi bundles.
+ */
+@Component
+@Service
+public class SystemPropertyCommand implements CrankstartCommand {
+    
+    public static final String I_SYSTEM_PROPERTY = "test.system.property";
+    private final Logger log = LoggerFactory.getLogger(getClass());
+
+    public boolean appliesTo(CrankstartCommandLine commandLine) {
+        return I_SYSTEM_PROPERTY.equals(commandLine.getVerb());
+    }
+    
+    public String getDescription() {
+        return I_SYSTEM_PROPERTY + ": set a system property";
+    }
+
+    public void execute(CrankstartContext crankstartContext, CrankstartCommandLine commandLine) throws Exception {
+        final String [] parts = commandLine.getQualifier().split(" ");
+        final String key = parts[0];
+        final StringBuilder sb = new StringBuilder();
+        for(int i=1 ; i < parts.length; i++) {
+            if(sb.length() > 0) {
+                sb.append(' ');
+            }
+            sb.append(parts[i]);
+        }
+        final String value = sb.toString();
+        System.setProperty(key, value);
+        log.info("System property [{}] set to [{}]", key, value);
+    }
+}

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

[sling-org-apache-sling-crankstart-test-services] 07/09: Use released 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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit 0f69df84add2edbc24c2d3535744c1880fe81504
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Sep 1 14:04:25 2014 +0000

    Use released API
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1621791 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 192da31..3c6a7c6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,7 +61,7 @@
         <dependency>
             <groupId>org.apache.sling</groupId>
             <artifactId>org.apache.sling.crankstart.api</artifactId>
-            <version>${project.version}</version>
+            <version>1.0.0</version>
             <scope>provided</scope>
         </dependency>
         <dependency>

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

[sling-org-apache-sling-crankstart-test-services] 05/09: Register resources with the Sling installer via a crankstart extension command

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit 0c657a3caa58eee5e2ba03a1024a4317a73a9575
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Jun 2 14:33:42 2014 +0000

    Register resources with the Sling installer via a crankstart extension command
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1599226 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 00f193f..3dabba0 100644
--- a/pom.xml
+++ b/pom.xml
@@ -27,11 +27,7 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
-                        <Private-Package>org.apache.sling.crankstart.*</Private-Package>
-                        <Import-Package>
-                            org.apache.sling.crankstart.api,
-                            *
-                        </Import-Package>
+                        <Private-Package>org.apache.sling.crankstart.testservices.*</Private-Package>
                     </instructions>
                 </configuration>
             </plugin>

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

[sling-org-apache-sling-crankstart-test-services] 06/09: Add scm info

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit cdce42cb314adaefac73db620d77acec2bbb5cf5
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Sep 1 13:47:57 2014 +0000

    Add scm info
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1621776 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 3dabba0..192da31 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,13 @@
     <packaging>bundle</packaging>
     <name>Apache Sling Crankstart Test Services</name>
     <description>Bundle used to test the Crankstart launcher</description>
-    
+
+    <scm>
+      <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services</connection>
+      <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services</developerConnection>
+      <url>http://sling.apache.org</url>
+    </scm>
+
     <build>
         <plugins>
             <plugin>

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

[sling-org-apache-sling-crankstart-test-services] 09/09: [maven-release-plugin] copy for tag org.apache.sling.crankstart.test.services-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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit fac148202ccbdf284d2f80f6aab2d7a53c8c1ccc
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Sep 1 14:05:15 2014 +0000

    [maven-release-plugin]  copy for tag org.apache.sling.crankstart.test.services-1.0.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.crankstart.test.services-1.0.0@1621793 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-crankstart-test-services] 01/09: SLING-3528 - add test-services to prepare for config command testing

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit e5ab36a45e358d4407e2f540439bd0c87d3b3ac6
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Fri May 2 08:13:56 2014 +0000

    SLING-3528 - add test-services to prepare for config command testing
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1591823 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml                                            | 65 ++++++++++++++++++++++
 .../testservices/ConfigFactoryServlet.java         | 61 ++++++++++++++++++++
 .../testservices/SingleConfigServlet.java          | 60 ++++++++++++++++++++
 .../sling/crankstart/testservices/TestServlet.java | 65 ++++++++++++++++++++++
 4 files changed, 251 insertions(+)

diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..855f696
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,65 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>19</version>
+    </parent>
+    
+    <groupId>org.apache.sling</groupId>
+    <artifactId>org.apache.sling.crankstart.test.services</artifactId>
+    <version>1.0.0-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache Sling Crankstart Test Services</name>
+    <description>Bundle used to test the Crankstart launcher</description>
+    
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-scr-plugin</artifactId>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        <Private-Package>org.apache.sling.crankstart.*</Private-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.scr.annotations</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.commons.osgi</artifactId>
+            <version>2.2.0</version>
+        </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>servlet-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-simple</artifactId>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+</project>
diff --git a/src/main/java/org/apache/sling/crankstart/testservices/ConfigFactoryServlet.java b/src/main/java/org/apache/sling/crankstart/testservices/ConfigFactoryServlet.java
new file mode 100644
index 0000000..105bc7f
--- /dev/null
+++ b/src/main/java/org/apache/sling/crankstart/testservices/ConfigFactoryServlet.java
@@ -0,0 +1,61 @@
+/*
+ * 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.
+ */
+package org.apache.sling.crankstart.testservices;
+
+import java.util.Map;
+
+import javax.servlet.Servlet;
+import javax.servlet.ServletException;
+
+import org.apache.felix.scr.annotations.Activate;
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.ConfigurationPolicy;
+import org.apache.felix.scr.annotations.Deactivate;
+import org.apache.felix.scr.annotations.Property;
+import org.apache.felix.scr.annotations.Reference;
+import org.apache.felix.scr.annotations.Service;
+import org.apache.sling.commons.osgi.PropertiesUtil;
+import org.osgi.service.http.HttpService;
+import org.osgi.service.http.NamespaceException;
+
+/** Servlet that requires a configuration, used to test the
+ *  Crankstart initial config feature with factory configs
+ */
+@Component(immediate=true,configurationFactory=true, policy=ConfigurationPolicy.REQUIRE, metatype=true)
+@Service(value=Servlet.class)
+@Reference(name="httpService",referenceInterface=HttpService.class)
+public class ConfigFactoryServlet extends TestServlet {
+    private static final long serialVersionUID = -6918378772515948579L;
+    
+    @Property(value="default message")
+    protected static final String PROP_MESSAGE = "message";
+    
+    @Property(value="/default_path")
+    protected static final String PROP_PATH = "path";
+    
+    @Activate
+    protected void activate(Map<String, Object> config) throws ServletException, NamespaceException {
+        message = PropertiesUtil.toString(config.get(PROP_MESSAGE), "no message");
+        path = PropertiesUtil.toString(config.get(PROP_PATH), "no path");
+        register();
+    }
+    
+    @Deactivate
+    protected void deactivate(Map<String, Object> config) throws ServletException, NamespaceException {
+        unregister();
+    }
+}
diff --git a/src/main/java/org/apache/sling/crankstart/testservices/SingleConfigServlet.java b/src/main/java/org/apache/sling/crankstart/testservices/SingleConfigServlet.java
new file mode 100644
index 0000000..c01eeb1
--- /dev/null
+++ b/src/main/java/org/apache/sling/crankstart/testservices/SingleConfigServlet.java
@@ -0,0 +1,60 @@
+/*
+ * 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.
+ */
+package org.apache.sling.crankstart.testservices;
+
+import java.util.Map;
+
+import javax.servlet.Servlet;
+import javax.servlet.ServletException;
+
+import org.apache.felix.scr.annotations.Activate;
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.Deactivate;
+import org.apache.felix.scr.annotations.Property;
+import org.apache.felix.scr.annotations.Reference;
+import org.apache.felix.scr.annotations.Service;
+import org.apache.sling.commons.osgi.PropertiesUtil;
+import org.osgi.service.http.HttpService;
+import org.osgi.service.http.NamespaceException;
+
+/** Servlet with a non-factory configuration, used to test the
+ *  Crankstart initial config feature
+ */
+@Component(immediate=true,metatype=true)
+@Service(value=Servlet.class)
+@Reference(name="httpService",referenceInterface=HttpService.class)
+public class SingleConfigServlet extends TestServlet {
+    private static final long serialVersionUID = -6918378772515948581L;
+    
+    @Property(value="default message")
+    protected static final String PROP_MESSAGE = "message";
+    
+    @Property(value="/default_path")
+    protected static final String PROP_PATH = "path";
+    
+    @Activate
+    protected void activate(Map<String, Object> config) throws ServletException, NamespaceException {
+        message = PropertiesUtil.toString(config.get(PROP_MESSAGE), "no message");
+        path = PropertiesUtil.toString(config.get(PROP_PATH), "/no_path");
+        register();
+    }
+    
+    @Deactivate
+    protected void deactivate(Map<String, Object> config) throws ServletException, NamespaceException {
+        unregister();
+    }
+}
diff --git a/src/main/java/org/apache/sling/crankstart/testservices/TestServlet.java b/src/main/java/org/apache/sling/crankstart/testservices/TestServlet.java
new file mode 100644
index 0000000..3d03789
--- /dev/null
+++ b/src/main/java/org/apache/sling/crankstart/testservices/TestServlet.java
@@ -0,0 +1,65 @@
+/*
+ * 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.
+ */
+package org.apache.sling.crankstart.testservices;
+
+import java.io.IOException;
+
+import javax.servlet.ServletException;
+import javax.servlet.http.HttpServlet;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.osgi.service.http.HttpService;
+import org.osgi.service.http.NamespaceException;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/** Base class for our test servlets */
+abstract class TestServlet extends HttpServlet {
+    private static final long serialVersionUID = -6918378772515948578L;
+    protected String message;
+    protected String path;
+    protected final Logger log = LoggerFactory.getLogger(getClass());
+    
+    protected HttpService httpService;
+    
+    protected void register() throws ServletException, NamespaceException {
+        httpService.registerServlet(path, this, null, null);
+        log.info("Registered {} on path {}", this, path);
+    }
+    
+    protected void unregister() throws ServletException, NamespaceException {
+        httpService.unregister(path);
+        log.info("Unregistered path {}", path);
+    }
+    
+    protected void bindHttpService(HttpService s) {
+        httpService = s;
+    }
+    
+    protected void unbindHttpService(HttpService s) {
+        httpService = null;
+    }
+    
+    @Override
+    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
+        resp.setContentType("text/plain");
+        resp.setCharacterEncoding("UTF-8");
+        resp.getWriter().write(getClass().getSimpleName() + ":" + message);
+        resp.getWriter().flush();
+    }
+}

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

[sling-org-apache-sling-crankstart-test-services] 04/09: Add missing parent pom relativePath elements

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit 74809d7153764ec17955e6139ed0364f9d7f33d0
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Jun 2 12:55:16 2014 +0000

    Add missing parent pom relativePath elements
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1599199 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pom.xml b/pom.xml
index 67552bc..00f193f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,6 +5,7 @@
         <groupId>org.apache.sling</groupId>
         <artifactId>sling</artifactId>
         <version>19</version>
+        <relativePath />
     </parent>
     
     <groupId>org.apache.sling</groupId>

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

[sling-org-apache-sling-crankstart-test-services] 02/09: SLING-3528 - test the config command in CrankstartBootstrapTest

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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit d869ca7ddde09e4441497f161c5220414204f779
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Wed May 14 16:12:33 2014 +0000

    SLING-3528 - test the config command in CrankstartBootstrapTest
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1594629 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 855f696..8244d96 100644
--- a/pom.xml
+++ b/pom.xml
@@ -9,7 +9,7 @@
     
     <groupId>org.apache.sling</groupId>
     <artifactId>org.apache.sling.crankstart.test.services</artifactId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>0.0.1-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Apache Sling Crankstart Test Services</name>
     <description>Bundle used to test the Crankstart launcher</description>

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

[sling-org-apache-sling-crankstart-test-services] 08/09: [maven-release-plugin] prepare release org.apache.sling.crankstart.test.services-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.crankstart.test.services-1.0.0
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-crankstart-test-services.git

commit c4a1c0893822c37bf604760e0cb3f1ba7a7ca46a
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Mon Sep 1 14:05:04 2014 +0000

    [maven-release-plugin] prepare release org.apache.sling.crankstart.test.services-1.0.0
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services@1621792 13f79535-47bb-0310-9956-ffa450edef68
---
 pom.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index 3c6a7c6..9242166 100644
--- a/pom.xml
+++ b/pom.xml
@@ -10,15 +10,15 @@
     
     <groupId>org.apache.sling</groupId>
     <artifactId>org.apache.sling.crankstart.test.services</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <version>1.0.0</version>
     <packaging>bundle</packaging>
     <name>Apache Sling Crankstart Test Services</name>
     <description>Bundle used to test the Crankstart launcher</description>
 
     <scm>
-      <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services</connection>
-      <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/crankstart/test-services</developerConnection>
-      <url>http://sling.apache.org</url>
+      <connection>scm:svn:http://svn.apache.org/repos/asf/sling/tags/org.apache.sling.crankstart.test.services-1.0.0</connection>
+      <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.crankstart.test.services-1.0.0</developerConnection>
+      <url>scm:svn:https://svn.apache.org/repos/asf/sling/tags/org.apache.sling.crankstart.test.services-1.0.0</url>
     </scm>
 
     <build>

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