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 2018/04/03 15:15:49 UTC

[sling-ide-tooling] 04/05: SLING-5648 - Make Non-Eclipse Module regular Maven Packages

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

rombert pushed a commit to branch feature/intellij
in repository https://gitbox.apache.org/repos/asf/sling-ide-tooling.git

commit cee176643e9bf0660e0bc4c3c44fdc7ce7bc345d
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Tue Apr 3 17:23:23 2018 +0300

    SLING-5648 - Make Non-Eclipse Module regular Maven Packages
    
    Added a p2 repository under shared/p2.
---
 shared/p2/pom.xml                        |  1 +
 shared/p2/shared-repository/category.xml | 23 +++++++++++++++++++++++
 shared/p2/shared-repository/pom.xml      | 25 +++++++++++++++++++++++++
 3 files changed, 49 insertions(+)

diff --git a/shared/p2/pom.xml b/shared/p2/pom.xml
index e0ad465..edda3a4 100644
--- a/shared/p2/pom.xml
+++ b/shared/p2/pom.xml
@@ -34,6 +34,7 @@
 
     <modules>
         <module>shared-feature</module>
+        <module>shared-repository</module>
     </modules>
 
     <repositories>
diff --git a/shared/p2/shared-repository/category.xml b/shared/p2/shared-repository/category.xml
new file mode 100644
index 0000000..242fa40
--- /dev/null
+++ b/shared/p2/shared-repository/category.xml
@@ -0,0 +1,23 @@
+<?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.
+-->
+<site>
+   <feature url="features/org.apache.sling.ide.shared.feature_0.0.0.qualifier.jar" id="org.apache.sling.ide.shared.feature" version="0.0.0">
+      <category name="sling"/>
+   </feature>
+   <category-def name="sling" label="Sling"/>
+</site>
diff --git a/shared/p2/shared-repository/pom.xml b/shared/p2/shared-repository/pom.xml
new file mode 100644
index 0000000..7ec884d
--- /dev/null
+++ b/shared/p2/shared-repository/pom.xml
@@ -0,0 +1,25 @@
+<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-ide-tooling-p2</artifactId>
+    <version>1.2.3-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>org.apache.sling.ide.shared.repository</artifactId>
+  <packaging>eclipse-repository</packaging>
+
+  <name>Apache Sling IDE Tooling Shared Features P2 repository</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.ide.api</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+</project>

-- 
To stop receiving notification emails like this one, please contact
rombert@apache.org.