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/02 16:55:49 UTC

svn commit: r351760 - in /geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source: maven.xml project.properties

Author: sppatel
Date: Fri Dec  2 07:55:46 2005
New Revision: 351760

URL: http://svn.apache.org/viewcvs?rev=351760&view=rev
Log:
packagesource goal

Added:
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/maven.xml
    geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/project.properties

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/maven.xml
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/maven.xml?rev=351760&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/maven.xml (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/maven.xml Fri Dec  2 07:55:46 2005
@@ -0,0 +1,47 @@
+<?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="packagesource"/>
+    <attainGoal name="jar:install"/>
+  </goal>
+  
+  <goal name="rebuild">
+    <attainGoal name="clean"/>
+    <attainGoal name="build"/>
+  </goal>
+  
+  <goal name="eclipse:generate-classpath">
+  <!-- do nothing -->
+  </goal>
+  
+  <goal name="packagesource">
+     <mkdir dir="${packaged.source.root}/org.apache.geronimo.deployment.model_0.5.0/"/>
+     <mkdir dir="${packaged.source.root}/org.apache.geronimo.devtools.eclipse.core_0.5.0/"/>
+     <mkdir dir="${packaged.source.root}/org.apache.geronimo.ui_0.5.0/"/>
+     <zip destfile="${packaged.source.root}/org.apache.geronimo.deployment.model_0.5.0/src.zip" basedir="${basedir}/../org.apache.geronimo.deployment.model/src"/>
+     <zip destfile="${packaged.source.root}/org.apache.geronimo.devtools.eclipse.core_0.5.0/src.zip" basedir="${basedir}/../org.apache.geronimo.devtools.eclipse.core/src"/>
+     <zip destfile="${packaged.source.root}/org.apache.geronimo.ui_0.5.0/src.zip" basedir="${basedir}/../org.apache.geronimo.ui/src"/>
+  </goal>
+  
+</project>

Added: geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/project.properties
URL: http://svn.apache.org/viewcvs/geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/project.properties?rev=351760&view=auto
==============================================================================
--- geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/project.properties (added)
+++ geronimo/devtools/trunk/modules/eclipse-plugin/plugins/org.apache.geronimo.feature.source/project.properties Fri Dec  2 07:55:46 2005
@@ -0,0 +1 @@
+packaged.source.root=${maven.build.dir}/classes/src/
\ No newline at end of file