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 2016/02/17 23:23:57 UTC

svn commit: r1730956 - in /sling/trunk/tooling/ide: eclipse-m2e-core/ eclipse-m2e-core/META-INF/ eclipse-m2e-core/META-INF/MANIFEST.MF eclipse-m2e-core/build.properties eclipse-m2e-core/pom.xml m2e-feature/feature.xml pom.xml

Author: rombert
Date: Wed Feb 17 22:23:57 2016
New Revision: 1730956

URL: http://svn.apache.org/viewvc?rev=1730956&view=rev
Log:
SLING-3605 - Debug based on bundles deployed on the server 

Add an eclipse-m2e-core plugin.

Added:
    sling/trunk/tooling/ide/eclipse-m2e-core/
    sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/
    sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/MANIFEST.MF
    sling/trunk/tooling/ide/eclipse-m2e-core/build.properties
    sling/trunk/tooling/ide/eclipse-m2e-core/pom.xml
Modified:
    sling/trunk/tooling/ide/m2e-feature/feature.xml
    sling/trunk/tooling/ide/pom.xml

Added: sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/MANIFEST.MF?rev=1730956&view=auto
==============================================================================
--- sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/MANIFEST.MF (added)
+++ sling/trunk/tooling/ide/eclipse-m2e-core/META-INF/MANIFEST.MF Wed Feb 17 22:23:57 2016
@@ -0,0 +1,8 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-SymbolicName: org.apache.sling.ide.eclipse-m2e-core;singleton:=true
+Bundle-Version: 1.0.99.qualifier
+Bundle-ActivationPolicy: lazy
+Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Bundle-ClassPath: .
+

Added: sling/trunk/tooling/ide/eclipse-m2e-core/build.properties
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/eclipse-m2e-core/build.properties?rev=1730956&view=auto
==============================================================================
--- sling/trunk/tooling/ide/eclipse-m2e-core/build.properties (added)
+++ sling/trunk/tooling/ide/eclipse-m2e-core/build.properties Wed Feb 17 22:23:57 2016
@@ -0,0 +1,4 @@
+output.. = bin/
+bin.includes = META-INF/,\
+               .
+source.. = src/

Added: sling/trunk/tooling/ide/eclipse-m2e-core/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/eclipse-m2e-core/pom.xml?rev=1730956&view=auto
==============================================================================
--- sling/trunk/tooling/ide/eclipse-m2e-core/pom.xml (added)
+++ sling/trunk/tooling/ide/eclipse-m2e-core/pom.xml Wed Feb 17 22:23:57 2016
@@ -0,0 +1,61 @@
+<?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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.sling.ide</groupId>
+    <artifactId>reactor</artifactId>
+    <version>1.0.99-SNAPSHOT</version>
+  </parent>
+  <artifactId>org.apache.sling.ide.eclipse-m2e-core</artifactId>
+  <packaging>eclipse-plugin</packaging>
+  <name>Sling IDE Tools: Eclipse M2Eclipse-based Core</name>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/tooling/ide/eclipse-m2e-core</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/tooling/ide/eclipse-m2e-core</developerConnection>
+    <url>http://svn.apache.org/viewvc/sling/trunk/tooling/ide/eclipse-m2e-core</url>
+  </scm>
+  
+  <build>
+    <!-- ensure that extra files are picked up by the maven-source-plugin -->
+    <resources>
+        <resource>
+            <directory>.</directory>
+            <includes>
+                <include>build.properties</include>
+                <include>.options</include>
+                <include>plugin.xml</include>
+                <include>META-INF/*</include>
+            </includes>
+        </resource>
+    </resources>
+    <plugins>
+        <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <configuration>
+                <archive>
+                    <manifestFile>META-INF/MANIFEST.MF</manifestFile>
+                </archive>
+            </configuration>
+        </plugin>        
+    </plugins>
+  </build>  
+</project>

Modified: sling/trunk/tooling/ide/m2e-feature/feature.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/m2e-feature/feature.xml?rev=1730956&r1=1730955&r2=1730956&view=diff
==============================================================================
--- sling/trunk/tooling/ide/m2e-feature/feature.xml (original)
+++ sling/trunk/tooling/ide/m2e-feature/feature.xml Wed Feb 17 22:23:57 2016
@@ -230,6 +230,13 @@
    </requires>
 
    <plugin
+         id="org.apache.sling.ide.eclipse-m2e-core"
+         download-size="0"
+         install-size="0"
+         version="0.0.0"
+         unpack="false"/>
+
+   <plugin
          id="org.apache.sling.ide.eclipse-m2e-ui"
          download-size="0"
          install-size="0"

Modified: sling/trunk/tooling/ide/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/tooling/ide/pom.xml?rev=1730956&r1=1730955&r2=1730956&view=diff
==============================================================================
--- sling/trunk/tooling/ide/pom.xml (original)
+++ sling/trunk/tooling/ide/pom.xml Wed Feb 17 22:23:57 2016
@@ -50,6 +50,7 @@
 		<module>eclipse-core</module>
 		<module>eclipse-ui</module>
 		<module>feature</module>
+		<module>eclipse-m2e-core</module>
 		<module>eclipse-m2e-ui</module>
 		<module>eclipse-m2e-test</module>
 		<module>m2e-feature</module>