You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by sp...@apache.org on 2005/12/09 21:13:24 UTC

svn commit: r355587 - in /geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server: ./ .project META-INF/ META-INF/MANIFEST.MF maven.xml project.xml

Author: sppatel
Date: Fri Dec  9 12:13:19 2005
New Revision: 355587

URL: http://svn.apache.org/viewcvs?rev=355587&view=rev
Log:
add new plugin wrapper for installable server

Added:
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/.project
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/MANIFEST.MF
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/maven.xml
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/project.xml

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/.project
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/.project?rev=355587&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/.project (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/.project Fri Dec  9 12:13:19 2005
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>org.apache.geronimo.j2ee.server</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+	</natures>
+</projectDescription>

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/MANIFEST.MF?rev=355587&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/MANIFEST.MF (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/META-INF/MANIFEST.MF Fri Dec  9 12:13:19 2005
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Geronimo Server Plug-in
+Bundle-SymbolicName: org.apache.geronimo.j2ee.server
+Bundle-Version: 1.0.0
+Bundle-Vendor: Apache.org
+Bundle-Localization: plugin

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/maven.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/maven.xml?rev=355587&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/maven.xml (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/maven.xml Fri Dec  9 12:13:19 2005
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+
+    Copyright 2004 The Apache Software Foundation
+
+    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.
+-->
+<project default="default" xmlns:j="jelly:core" xmlns:ant="jelly:ant">
+
+  <goal name="default">
+    <attainGoal name="build"/>
+  </goal>
+  
+  <goal name="build">
+    <attainGoal name="jar:install"/>
+  </goal>
+  
+  <goal name="rebuild">
+    <attainGoal name="clean"/>
+    <attainGoal name="build"/>
+  </goal>
+  
+  <goal name="eclipse:generate-classpath">
+    <ant:copy file="${basedir}/../../geronimo-emf/.classpath" todir="${basedir}" overwrite="true"/>
+  </goal>
+  
+</project>

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/project.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/project.xml?rev=355587&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/project.xml (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.j2ee.server/project.xml Fri Dec  9 12:13:19 2005
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2004 The Apache Software Foundation
+
+    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.
+-->
+<project>
+  <extend>../../etc/project.xml</extend>
+  <id>org.apache.geronimo.j2ee.server</id>
+  <name>org.apache.geronimo.j2ee.server</name>
+  <build>
+    <resources>      
+      <resource>
+        <directory>../../../../</directory>
+        <includes>
+          <include>LICENSE.txt</include>
+        </includes>
+      </resource>
+    </resources>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>geronimo/distributions/</groupId>
+      <artifactId>geronimo-jetty-j2ee</artifactId>
+      <version>${geronimo.version}</version>
+      <type>zip</type>
+    </dependency>
+  </dependencies>
+</project>
\ No newline at end of file