You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/05/27 06:04:24 UTC

svn commit: r779017 - in /incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature: feature.xml pom.xml

Author: spoole
Date: Wed May 27 06:04:23 2009
New Revision: 779017

URL: http://svn.apache.org/viewvc?rev=779017&view=rev
Log:
made kato jdi feature in experimental branch buildable by maven

Added:
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/pom.xml
Modified:
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/feature.xml

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/feature.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/feature.xml?rev=779017&r1=779016&r2=779017&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/feature.xml (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/feature.xml Wed May 27 06:04:23 2009
@@ -1,32 +1,31 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed 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.
--->
-
-<feature
-      id="corg.apache.kato.tools.jdi.feature"
-      label="JDI Feature"
-      version="1.0.2"
-      provider-name="Apache"
-      plugin="org.apache.kato.tools.jdi.ui">
-
-   <description>
-      This feature collects all plugins required for Eclipse based
-Post-Mortem Debug
-   </description>
-
-   <copyright>
-      Plug-ins contained in this feature have their own agreements.
-   </copyright>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed 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.
+-->
+<feature
+      id="org.apache.kato.tools.jdi.feature"
+      label="JDI Feature"
+      version="0.0.1"
+      provider-name="Apache Software Foundation"
+      plugin="org.apache.kato.tools.jdi.ui">
+
+   <description>
+      This feature collects all plugins required for Eclipse based
+Post-Mortem Debug
+   </description>
+
+   <copyright>
+      Plug-ins contained in this feature have their own agreements.
+   </copyright>
+
+</feature>

Added: incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/pom.xml
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/pom.xml?rev=779017&view=auto
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/pom.xml (added)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato/features/kato.jdi.feature/pom.xml Wed May 27 06:04:23 2009
@@ -0,0 +1,38 @@
+<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">
+  <parent>
+    <artifactId>kato</artifactId>
+    <groupId>org.apache.kato</groupId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.apache.kato</groupId>
+  <artifactId>kato.jdi.feature</artifactId>
+  <packaging>zip</packaging>
+  <version>0.0.1-SNAPSHOT</version>
+  <build>
+  	<plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>pde-maven-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <eclipseInstall>/home/spoole/eclipseinstall/eclipse</eclipseInstall>
+          <!-- 
+          <pdeProductFilename>kato.product</pdeProductFilename>
+          <pdeBuildVersion>3.2.0.v20060603</pdeBuildVersion>
+           -->       
+        </configuration>
+      </plugin>
+    	<plugin>
+			<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.6</source>
+					<target>1.6</target>
+				</configuration>
+		</plugin>
+	</plugins>
+    
+  	
+  </build>
+</project>
\ No newline at end of file