You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@oodt.apache.org by "Mattmann, Chris A (388J)" <ch...@jpl.nasa.gov> on 2011/10/05 00:30:13 UTC

Re: svn commit: r1178975 - in /oodt/trunk/mvn/archetypes/radix/src/main/resources: META-INF/maven/ archetype-resources/ archetype-resources/crawler/ archetype-resources/crawler/src/main/assembly/ archetype-resources/distribution/ archetype-resources/di...

Hey Paul is there is a JIRA issue ID key (OODT-120 maybe?) that you can reference in your commit
msgs for RADIX? If not, maybe it's time to create a JIRA for RADIX...

Cheers,
Chris

On Oct 4, 2011, at 2:59 PM, <pr...@apache.org> <pr...@apache.org> wrote:

> Author: pramirez
> Date: Tue Oct  4 21:59:20 2011
> New Revision: 1178975
>
> URL: http://svn.apache.org/viewvc?rev=1178975&view=rev
> Log:
> Updates to add in tomcat and webapps in the module pom
>
> Modified:
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
>    oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml Tue Oct  4 21:59:20 2011
> @@ -3,7 +3,7 @@
>     xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
>     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
>   <modules>
> -    <module id="exts" dir="extensions" name="extensions">
> +    <module id="extensions" dir="extensions" name="extensions">
>       <fileSets>
>         <fileSet>
>           <directory></directory>
> @@ -43,5 +43,39 @@
>         </fileSet>
>       </fileSets>
>     </module>
> +    <module id="webapps" dir="webapps" name="webapps">
> +      <!--<fileSets>
> +        <fileSet>
> +          <directory></directory>
> +          <includes/>
> +        </fileSet>
> +      </fileSets>-->
> +      <modules>
> +        <module id="wmonitor" dir="wmonitor" name="wmonitor">
> +          <fileSets>
> +            <fileSet>
> +              <directory></directory>
> +              <includes/>
> +            </fileSet>
> +          </fileSets>
> +        </module>
> +        <module id="fmbrowser" dir="fmbrowser" name="fmbrowser">
> +          <fileSets>
> +            <fileSet>
> +              <directory></directory>
> +              <includes/>
> +            </fileSet>
> +          </fileSets>
> +        </module>
> +        <module id="fmprod" dir="fmprod" name="fmprod">
> +          <fileSets>
> +            <fileSet>
> +              <directory></directory>
> +              <includes/>
> +            </fileSet>
> +          </fileSets>
> +        </module>
> +      </modules>
> +    </module>
>   </modules>
> </archetype-descriptor>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml Tue Oct  4 21:59:20 2011
> @@ -40,7 +40,7 @@
>   <dependencies>
>     <dependency>
>       <groupId>${groupId}</groupId>
> -      <artifactId>${rootArtifactId}-exts</artifactId>
> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>       <version>${project.parent.version}</version>
>       <type>jar</type>
>     </dependency>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
> @@ -2,7 +2,6 @@
>   <id>bin</id>
>   <formats>
>     <format>tar.gz</format>
> -    <format>zip</format>
>   </formats>
>   <includeBaseDirectory>false</includeBaseDirectory>
>   <baseDirectory>crawler</baseDirectory>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml Tue Oct  4 21:59:20 2011
> @@ -36,6 +36,19 @@
>       <type>tar.gz</type>
>       <classifier>bin</classifier>
>     </dependency>
> +    <dependency>
> +      <groupId>${groupId}</groupId>
> +      <artifactId>${rootArtifactId}-extensions</artifactId>
> +      <version>${project.parent.version}</version>
> +      <type>tar.gz</type>
> +      <classifier>bin</classifier>
> +    </dependency>
> +    <dependency>
> +      <groupId>tomcat</groupId>
> +      <artifactId>apache-tomcat</artifactId>
> +      <version>5.5.23</version>
> +      <type>zip</type>
> +    </dependency>
>   </dependencies>
>
>   <build>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
> @@ -4,7 +4,6 @@
>   <id>bin</id>
>   <formats>
>     <format>tar.gz</format>
> -    <format>zip</format>
>   </formats>
>   <includeBaseDirectory>false</includeBaseDirectory>
>   <fileSets>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml Tue Oct  4 21:59:20 2011
> @@ -15,6 +15,30 @@
>   <name>Extensions</name>
>   <description>Library of classes that are reused across subcomponents.</description>
>
> +  <build>
> +    <plugins>
> +      <plugin>
> +        <groupId>org.apache.maven.plugins</groupId>
> +        <artifactId>maven-assembly-plugin</artifactId>
> +        <version>2.2-beta-2</version>
> +        <configuration>
> +          <descriptors>
> +            <descriptor>src/main/assembly/assembly.xml</descriptor>
> +          </descriptors>
> +        </configuration>
> +        <executions>
> +          <execution>
> +            <id>dist-assembly</id>
> +            <phase>package</phase>
> +            <goals>
> +              <goal>single</goal>
> +            </goals>
> +          </execution>
> +        </executions>
> +      </plugin>
> +    </plugins>
> +  </build>
> +
>   <dependencies>
>     <dependency>
>       <groupId>org.apache.oodt</groupId>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
> @@ -2,7 +2,6 @@
>   <id>bin</id>
>   <formats>
>     <format>tar.gz</format>
> -    <format>zip</format>
>   </formats>
>   <includeBaseDirectory>false</includeBaseDirectory>
>   <baseDirectory>extensions</baseDirectory>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml Tue Oct  4 21:59:20 2011
> @@ -41,7 +41,7 @@
>   <dependencies>
>     <dependency>
>       <groupId>${groupId}</groupId>
> -      <artifactId>${rootArtifactId}-exts</artifactId>
> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>       <version>${project.parent.version}</version>
>       <type>jar</type>
>     </dependency>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
> @@ -2,7 +2,6 @@
>   <id>bin</id>
>   <formats>
>     <format>tar.gz</format>
> -    <format>zip</format>
>   </formats>
>   <includeBaseDirectory>false</includeBaseDirectory>
>   <baseDirectory>filemgr</baseDirectory>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml Tue Oct  4 21:59:20 2011
> @@ -32,6 +32,21 @@
>     </repository>
>   </repositories>
>
> +  <distributionManagement>
> +  <!-- use the following if you're not using a snapshot version. -->
> +    <repository>
> +      <id>repo</id>
> +      <name>Repository Name</name>
> +      <url>scp://host/path/to/repo</url>
> +    </repository>
> +    <!-- use the following if you ARE using a snapshot version. -->
> +    <snapshotRepository>
> +      <id>repo</id>
> +      <name>Repository Name</name>
> +      <url>scp://host/path/to/repo</url>
> +    </snapshotRepository>
> +  </distributionManagement>
> +
>   <build>
>     <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
>     <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml Tue Oct  4 21:59:20 2011
> @@ -40,7 +40,7 @@
>   <dependencies>
>     <dependency>
>       <groupId>${groupId}</groupId>
> -      <artifactId>${rootArtifactId}-exts</artifactId>
> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>       <version>${project.parent.version}</version>
>       <type>jar</type>
>     </dependency>
>
> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
> ==============================================================================
> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml (original)
> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
> @@ -2,7 +2,6 @@
>   <id>bin</id>
>   <formats>
>     <format>tar.gz</format>
> -    <format>zip</format>
>   </formats>
>   <includeBaseDirectory>false</includeBaseDirectory>
>   <baseDirectory>workflow</baseDirectory>
>
>


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Chris Mattmann, Ph.D.
Senior Computer Scientist
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 171-266B, Mailstop: 171-246
Email: chris.a.mattmann@nasa.gov
WWW:   http://sunset.usc.edu/~mattmann/
Phone: +1 (818) 354-8810
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adjunct Assistant Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Re: svn commit: r1178975 - in /oodt/trunk/mvn/archetypes/radix/src/main/resources: META-INF/maven/ archetype-resources/ archetype-resources/crawler/ archetype-resources/crawler/src/main/assembly/ archetype-resources/distribution/ archetype-resources/di...

Posted by "Mattmann, Chris A (388J)" <ch...@jpl.nasa.gov>.
Nah I don't think so, don't worry about it, looks like OODT-120 is the right issue to ref...

Cheers,
Chris

On Oct 5, 2011, at 6:29 AM, Ramirez, Paul M (388J) wrote:

> Hey Chris,
>
> Yeppers, I forgot. Is there a way to update the commit message?
>
> Thanks,
> Paul
>
> On Oct 4, 2011, at 3:30 PM, Mattmann, Chris A (388J) wrote:
>
>> Hey Paul is there is a JIRA issue ID key (OODT-120 maybe?) that you can reference in your commit
>> msgs for RADIX? If not, maybe it's time to create a JIRA for RADIX...
>>
>> Cheers,
>> Chris
>>
>> On Oct 4, 2011, at 2:59 PM, <pr...@apache.org> <pr...@apache.org> wrote:
>>
>>> Author: pramirez
>>> Date: Tue Oct  4 21:59:20 2011
>>> New Revision: 1178975
>>>
>>> URL: http://svn.apache.org/viewvc?rev=1178975&view=rev
>>> Log:
>>> Updates to add in tomcat and webapps in the module pom
>>>
>>> Modified:
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
>>>  oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml Tue Oct  4 21:59:20 2011
>>> @@ -3,7 +3,7 @@
>>>   xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
>>>   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
>>> <modules>
>>> -    <module id="exts" dir="extensions" name="extensions">
>>> +    <module id="extensions" dir="extensions" name="extensions">
>>>     <fileSets>
>>>       <fileSet>
>>>         <directory></directory>
>>> @@ -43,5 +43,39 @@
>>>       </fileSet>
>>>     </fileSets>
>>>   </module>
>>> +    <module id="webapps" dir="webapps" name="webapps">
>>> +      <!--<fileSets>
>>> +        <fileSet>
>>> +          <directory></directory>
>>> +          <includes/>
>>> +        </fileSet>
>>> +      </fileSets>-->
>>> +      <modules>
>>> +        <module id="wmonitor" dir="wmonitor" name="wmonitor">
>>> +          <fileSets>
>>> +            <fileSet>
>>> +              <directory></directory>
>>> +              <includes/>
>>> +            </fileSet>
>>> +          </fileSets>
>>> +        </module>
>>> +        <module id="fmbrowser" dir="fmbrowser" name="fmbrowser">
>>> +          <fileSets>
>>> +            <fileSet>
>>> +              <directory></directory>
>>> +              <includes/>
>>> +            </fileSet>
>>> +          </fileSets>
>>> +        </module>
>>> +        <module id="fmprod" dir="fmprod" name="fmprod">
>>> +          <fileSets>
>>> +            <fileSet>
>>> +              <directory></directory>
>>> +              <includes/>
>>> +            </fileSet>
>>> +          </fileSets>
>>> +        </module>
>>> +      </modules>
>>> +    </module>
>>> </modules>
>>> </archetype-descriptor>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -40,7 +40,7 @@
>>> <dependencies>
>>>   <dependency>
>>>     <groupId>${groupId}</groupId>
>>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>>     <version>${project.parent.version}</version>
>>>     <type>jar</type>
>>>   </dependency>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>>> @@ -2,7 +2,6 @@
>>> <id>bin</id>
>>> <formats>
>>>   <format>tar.gz</format>
>>> -    <format>zip</format>
>>> </formats>
>>> <includeBaseDirectory>false</includeBaseDirectory>
>>> <baseDirectory>crawler</baseDirectory>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -36,6 +36,19 @@
>>>     <type>tar.gz</type>
>>>     <classifier>bin</classifier>
>>>   </dependency>
>>> +    <dependency>
>>> +      <groupId>${groupId}</groupId>
>>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>> +      <version>${project.parent.version}</version>
>>> +      <type>tar.gz</type>
>>> +      <classifier>bin</classifier>
>>> +    </dependency>
>>> +    <dependency>
>>> +      <groupId>tomcat</groupId>
>>> +      <artifactId>apache-tomcat</artifactId>
>>> +      <version>5.5.23</version>
>>> +      <type>zip</type>
>>> +    </dependency>
>>> </dependencies>
>>>
>>> <build>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>>> @@ -4,7 +4,6 @@
>>> <id>bin</id>
>>> <formats>
>>>   <format>tar.gz</format>
>>> -    <format>zip</format>
>>> </formats>
>>> <includeBaseDirectory>false</includeBaseDirectory>
>>> <fileSets>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -15,6 +15,30 @@
>>> <name>Extensions</name>
>>> <description>Library of classes that are reused across subcomponents.</description>
>>>
>>> +  <build>
>>> +    <plugins>
>>> +      <plugin>
>>> +        <groupId>org.apache.maven.plugins</groupId>
>>> +        <artifactId>maven-assembly-plugin</artifactId>
>>> +        <version>2.2-beta-2</version>
>>> +        <configuration>
>>> +          <descriptors>
>>> +            <descriptor>src/main/assembly/assembly.xml</descriptor>
>>> +          </descriptors>
>>> +        </configuration>
>>> +        <executions>
>>> +          <execution>
>>> +            <id>dist-assembly</id>
>>> +            <phase>package</phase>
>>> +            <goals>
>>> +              <goal>single</goal>
>>> +            </goals>
>>> +          </execution>
>>> +        </executions>
>>> +      </plugin>
>>> +    </plugins>
>>> +  </build>
>>> +
>>> <dependencies>
>>>   <dependency>
>>>     <groupId>org.apache.oodt</groupId>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>>> @@ -2,7 +2,6 @@
>>> <id>bin</id>
>>> <formats>
>>>   <format>tar.gz</format>
>>> -    <format>zip</format>
>>> </formats>
>>> <includeBaseDirectory>false</includeBaseDirectory>
>>> <baseDirectory>extensions</baseDirectory>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -41,7 +41,7 @@
>>> <dependencies>
>>>   <dependency>
>>>     <groupId>${groupId}</groupId>
>>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>>     <version>${project.parent.version}</version>
>>>     <type>jar</type>
>>>   </dependency>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>>> @@ -2,7 +2,6 @@
>>> <id>bin</id>
>>> <formats>
>>>   <format>tar.gz</format>
>>> -    <format>zip</format>
>>> </formats>
>>> <includeBaseDirectory>false</includeBaseDirectory>
>>> <baseDirectory>filemgr</baseDirectory>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -32,6 +32,21 @@
>>>   </repository>
>>> </repositories>
>>>
>>> +  <distributionManagement>
>>> +  <!-- use the following if you're not using a snapshot version. -->
>>> +    <repository>
>>> +      <id>repo</id>
>>> +      <name>Repository Name</name>
>>> +      <url>scp://host/path/to/repo</url>
>>> +    </repository>
>>> +    <!-- use the following if you ARE using a snapshot version. -->
>>> +    <snapshotRepository>
>>> +      <id>repo</id>
>>> +      <name>Repository Name</name>
>>> +      <url>scp://host/path/to/repo</url>
>>> +    </snapshotRepository>
>>> +  </distributionManagement>
>>> +
>>> <build>
>>>   <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
>>>   <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml Tue Oct  4 21:59:20 2011
>>> @@ -40,7 +40,7 @@
>>> <dependencies>
>>>   <dependency>
>>>     <groupId>${groupId}</groupId>
>>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>>     <version>${project.parent.version}</version>
>>>     <type>jar</type>
>>>   </dependency>
>>>
>>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
>>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>>> ==============================================================================
>>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml (original)
>>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>>> @@ -2,7 +2,6 @@
>>> <id>bin</id>
>>> <formats>
>>>   <format>tar.gz</format>
>>> -    <format>zip</format>
>>> </formats>
>>> <includeBaseDirectory>false</includeBaseDirectory>
>>> <baseDirectory>workflow</baseDirectory>
>>>
>>>
>>
>>
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> Chris Mattmann, Ph.D.
>> Senior Computer Scientist
>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>> Office: 171-266B, Mailstop: 171-246
>> Email: chris.a.mattmann@nasa.gov
>> WWW:   http://sunset.usc.edu/~mattmann/
>>
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>> Adjunct Assistant Professor, Computer Science Department
>> University of Southern California, Los Angeles, CA 90089 USA
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>
>


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Chris Mattmann, Ph.D.
Senior Computer Scientist
NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
Office: 171-266B, Mailstop: 171-246
Email: chris.a.mattmann@nasa.gov
WWW:   http://sunset.usc.edu/~mattmann/
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adjunct Assistant Professor, Computer Science Department
University of Southern California, Los Angeles, CA 90089 USA
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Re: svn commit: r1178975 - in /oodt/trunk/mvn/archetypes/radix/src/main/resources: META-INF/maven/ archetype-resources/ archetype-resources/crawler/ archetype-resources/crawler/src/main/assembly/ archetype-resources/distribution/ archetype-resources/di...

Posted by "Ramirez, Paul M (388J)" <pa...@jpl.nasa.gov>.
Hey Chris,

Yeppers, I forgot. Is there a way to update the commit message?

Thanks,
Paul

On Oct 4, 2011, at 3:30 PM, Mattmann, Chris A (388J) wrote:

> Hey Paul is there is a JIRA issue ID key (OODT-120 maybe?) that you can reference in your commit
> msgs for RADIX? If not, maybe it's time to create a JIRA for RADIX...
>
> Cheers,
> Chris
>
> On Oct 4, 2011, at 2:59 PM, <pr...@apache.org> <pr...@apache.org> wrote:
>
>> Author: pramirez
>> Date: Tue Oct  4 21:59:20 2011
>> New Revision: 1178975
>>
>> URL: http://svn.apache.org/viewvc?rev=1178975&view=rev
>> Log:
>> Updates to add in tomcat and webapps in the module pom
>>
>> Modified:
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
>>   oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/META-INF/maven/archetype-metadata.xml Tue Oct  4 21:59:20 2011
>> @@ -3,7 +3,7 @@
>>    xmlns="http://maven.apache.org/plugins/maven-archetype-plugin/archetype-descriptor/1.0.0"
>>    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
>>  <modules>
>> -    <module id="exts" dir="extensions" name="extensions">
>> +    <module id="extensions" dir="extensions" name="extensions">
>>      <fileSets>
>>        <fileSet>
>>          <directory></directory>
>> @@ -43,5 +43,39 @@
>>        </fileSet>
>>      </fileSets>
>>    </module>
>> +    <module id="webapps" dir="webapps" name="webapps">
>> +      <!--<fileSets>
>> +        <fileSet>
>> +          <directory></directory>
>> +          <includes/>
>> +        </fileSet>
>> +      </fileSets>-->
>> +      <modules>
>> +        <module id="wmonitor" dir="wmonitor" name="wmonitor">
>> +          <fileSets>
>> +            <fileSet>
>> +              <directory></directory>
>> +              <includes/>
>> +            </fileSet>
>> +          </fileSets>
>> +        </module>
>> +        <module id="fmbrowser" dir="fmbrowser" name="fmbrowser">
>> +          <fileSets>
>> +            <fileSet>
>> +              <directory></directory>
>> +              <includes/>
>> +            </fileSet>
>> +          </fileSets>
>> +        </module>
>> +        <module id="fmprod" dir="fmprod" name="fmprod">
>> +          <fileSets>
>> +            <fileSet>
>> +              <directory></directory>
>> +              <includes/>
>> +            </fileSet>
>> +          </fileSets>
>> +        </module>
>> +      </modules>
>> +    </module>
>>  </modules>
>> </archetype-descriptor>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -40,7 +40,7 @@
>>  <dependencies>
>>    <dependency>
>>      <groupId>${groupId}</groupId>
>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>      <version>${project.parent.version}</version>
>>      <type>jar</type>
>>    </dependency>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/crawler/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>> @@ -2,7 +2,6 @@
>>  <id>bin</id>
>>  <formats>
>>    <format>tar.gz</format>
>> -    <format>zip</format>
>>  </formats>
>>  <includeBaseDirectory>false</includeBaseDirectory>
>>  <baseDirectory>crawler</baseDirectory>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -36,6 +36,19 @@
>>      <type>tar.gz</type>
>>      <classifier>bin</classifier>
>>    </dependency>
>> +    <dependency>
>> +      <groupId>${groupId}</groupId>
>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>> +      <version>${project.parent.version}</version>
>> +      <type>tar.gz</type>
>> +      <classifier>bin</classifier>
>> +    </dependency>
>> +    <dependency>
>> +      <groupId>tomcat</groupId>
>> +      <artifactId>apache-tomcat</artifactId>
>> +      <version>5.5.23</version>
>> +      <type>zip</type>
>> +    </dependency>
>>  </dependencies>
>>
>>  <build>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>> @@ -4,7 +4,6 @@
>>  <id>bin</id>
>>  <formats>
>>    <format>tar.gz</format>
>> -    <format>zip</format>
>>  </formats>
>>  <includeBaseDirectory>false</includeBaseDirectory>
>>  <fileSets>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -15,6 +15,30 @@
>>  <name>Extensions</name>
>>  <description>Library of classes that are reused across subcomponents.</description>
>>
>> +  <build>
>> +    <plugins>
>> +      <plugin>
>> +        <groupId>org.apache.maven.plugins</groupId>
>> +        <artifactId>maven-assembly-plugin</artifactId>
>> +        <version>2.2-beta-2</version>
>> +        <configuration>
>> +          <descriptors>
>> +            <descriptor>src/main/assembly/assembly.xml</descriptor>
>> +          </descriptors>
>> +        </configuration>
>> +        <executions>
>> +          <execution>
>> +            <id>dist-assembly</id>
>> +            <phase>package</phase>
>> +            <goals>
>> +              <goal>single</goal>
>> +            </goals>
>> +          </execution>
>> +        </executions>
>> +      </plugin>
>> +    </plugins>
>> +  </build>
>> +
>>  <dependencies>
>>    <dependency>
>>      <groupId>org.apache.oodt</groupId>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/extensions/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>> @@ -2,7 +2,6 @@
>>  <id>bin</id>
>>  <formats>
>>    <format>tar.gz</format>
>> -    <format>zip</format>
>>  </formats>
>>  <includeBaseDirectory>false</includeBaseDirectory>
>>  <baseDirectory>extensions</baseDirectory>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -41,7 +41,7 @@
>>  <dependencies>
>>    <dependency>
>>      <groupId>${groupId}</groupId>
>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>      <version>${project.parent.version}</version>
>>      <type>jar</type>
>>    </dependency>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/filemgr/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>> @@ -2,7 +2,6 @@
>>  <id>bin</id>
>>  <formats>
>>    <format>tar.gz</format>
>> -    <format>zip</format>
>>  </formats>
>>  <includeBaseDirectory>false</includeBaseDirectory>
>>  <baseDirectory>filemgr</baseDirectory>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -32,6 +32,21 @@
>>    </repository>
>>  </repositories>
>>
>> +  <distributionManagement>
>> +  <!-- use the following if you're not using a snapshot version. -->
>> +    <repository>
>> +      <id>repo</id>
>> +      <name>Repository Name</name>
>> +      <url>scp://host/path/to/repo</url>
>> +    </repository>
>> +    <!-- use the following if you ARE using a snapshot version. -->
>> +    <snapshotRepository>
>> +      <id>repo</id>
>> +      <name>Repository Name</name>
>> +      <url>scp://host/path/to/repo</url>
>> +    </snapshotRepository>
>> +  </distributionManagement>
>> +
>>  <build>
>>    <sourceDirectory>${basedir}/src/main/java</sourceDirectory>
>>    <testSourceDirectory>${basedir}/src/test</testSourceDirectory>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/pom.xml Tue Oct  4 21:59:20 2011
>> @@ -40,7 +40,7 @@
>>  <dependencies>
>>    <dependency>
>>      <groupId>${groupId}</groupId>
>> -      <artifactId>${rootArtifactId}-exts</artifactId>
>> +      <artifactId>${rootArtifactId}-extensions</artifactId>
>>      <version>${project.parent.version}</version>
>>      <type>jar</type>
>>    </dependency>
>>
>> Modified: oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml
>> URL: http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml?rev=1178975&r1=1178974&r2=1178975&view=diff
>> ==============================================================================
>> --- oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml (original)
>> +++ oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/workflow/src/main/assembly/assembly.xml Tue Oct  4 21:59:20 2011
>> @@ -2,7 +2,6 @@
>>  <id>bin</id>
>>  <formats>
>>    <format>tar.gz</format>
>> -    <format>zip</format>
>>  </formats>
>>  <includeBaseDirectory>false</includeBaseDirectory>
>>  <baseDirectory>workflow</baseDirectory>
>>
>>
>
>
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Chris Mattmann, Ph.D.
> Senior Computer Scientist
> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
> Office: 171-266B, Mailstop: 171-246
> Email: chris.a.mattmann@nasa.gov
> WWW:   http://sunset.usc.edu/~mattmann/
> Phone: +1 (818) 354-8810
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> Adjunct Assistant Professor, Computer Science Department
> University of Southern California, Los Angeles, CA 90089 USA
> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>