-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
U-NIH\konkapv
committed
May 30, 2013
1 parent
423e7a0
commit 36de8ef
Showing
126 changed files
with
10,053 additions
and
8,898 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# tomcat and globus web URLs to download from .. | ||
tomcat.src.url=https://ncisvn.nci.nih.gov/svn/commonlibrary/trunk/techstack-2008/os-independent/apache-tomcat-5.5.20.zip | ||
globus.src.url=http://software.cagrid.org/community-repository/ws-core-enum-4.0.3.zip | ||
|
||
wsrf-war=wsrf-gsid | ||
|
||
|
||
#L | ||
# Copyright Washington University in St. Louis | ||
# Copyright SemanticBits | ||
# Copyright Persistent Systems | ||
# | ||
# Distributed under the OSI-approved BSD 3-Clause License. | ||
# See http://ncip.github.com/gsid/LICENSE.txt for details. | ||
#L | ||
|
||
# tomcat and globus web URLs to download from .. | ||
tomcat.src.url=https://ncisvn.nci.nih.gov/svn/commonlibrary/trunk/techstack-2008/os-independent/apache-tomcat-5.5.20.zip | ||
globus.src.url=http://software.cagrid.org/community-repository/ws-core-enum-4.0.3.zip | ||
|
||
wsrf-war=wsrf-gsid | ||
|
||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 33 additions & 24 deletions
57
identifiers-namingauthority-gridsvc/dependencies-build.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,33 @@ | ||
<?xml version="1.0"?> | ||
|
||
<project name="dependencies" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant"> | ||
<property file="project.properties" /> | ||
<property name="ivy.generated.artifacts.pattern.src" value="${ext.lib.dir}/[artifact].[ext]" /> | ||
<property name="ivy.generated.artifacts.pattern.test" value="${ext.test.lib.dir}/[artifact].[ext]" /> | ||
<property name="ivy.checksums" value=""/> | ||
<!-- | ||
<property name="ivy-shared-targets.file" location="${basedir}/ivy-shared-targets.xml" /> | ||
<import file="${ivy-shared-targets.file}" /> | ||
--> | ||
<target name="install.ivy"> | ||
<path id="ivy.lib.path"> | ||
<fileset dir="${lib.dir}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
</path> | ||
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" /> | ||
</target> | ||
<target name="do.resolve" depends="install.ivy"> | ||
<ivy:retrieve conf="impl" pattern="${ivy.generated.artifacts.pattern.src}" sync="true" type="*" /> | ||
<ivy:retrieve conf="impl-test" pattern="${ivy.generated.artifacts.pattern.test}" sync="true" type="*" /> | ||
</target> | ||
</project> | ||
<?xml version="1.0"?> | ||
|
||
<!--L | ||
Copyright Washington University in St. Louis | ||
Copyright SemanticBits | ||
Copyright Persistent Systems | ||
Distributed under the OSI-approved BSD 3-Clause License. | ||
See http://ncip.github.com/gsid/LICENSE.txt for details. | ||
L--> | ||
|
||
<project name="dependencies" basedir="." xmlns:ivy="antlib:org.apache.ivy.ant"> | ||
<property file="project.properties" /> | ||
<property name="ivy.generated.artifacts.pattern.src" value="${ext.lib.dir}/[artifact].[ext]" /> | ||
<property name="ivy.generated.artifacts.pattern.test" value="${ext.test.lib.dir}/[artifact].[ext]" /> | ||
<property name="ivy.checksums" value=""/> | ||
<!-- | ||
<property name="ivy-shared-targets.file" location="${basedir}/ivy-shared-targets.xml" /> | ||
<import file="${ivy-shared-targets.file}" /> | ||
--> | ||
<target name="install.ivy"> | ||
<path id="ivy.lib.path"> | ||
<fileset dir="${lib.dir}"> | ||
<include name="**/*.jar" /> | ||
</fileset> | ||
</path> | ||
<taskdef resource="org/apache/ivy/ant/antlib.xml" uri="antlib:org.apache.ivy.ant" classpathref="ivy.lib.path" /> | ||
</target> | ||
<target name="do.resolve" depends="install.ivy"> | ||
<ivy:retrieve conf="impl" pattern="${ivy.generated.artifacts.pattern.src}" sync="true" type="*" /> | ||
<ivy:retrieve conf="impl-test" pattern="${ivy.generated.artifacts.pattern.test}" sync="true" type="*" /> | ||
</target> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 78 additions & 68 deletions
146
identifiers-namingauthority-gridsvc/dev-build-deploy.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,78 @@ | ||
<?xml version="1.0"?> | ||
<project name="developers-build-deploy file" basedir="."> | ||
<!-- ============================================================== --> | ||
<!-- This file is designed to allow the developer to extend the --> | ||
<!-- deploy process without having to edit the build-deploy.xml --> | ||
<!-- file. DO NOT REMOVE ANY TARGETS --> | ||
<!-- ============================================================== --> | ||
|
||
<target name="copyExtLibs"> | ||
|
||
<copy todir="${build.lib.dir}"> | ||
<fileset dir="${ext.lib.dir}"> | ||
<include name="*.jar" /> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy Tomcat --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployTomcat" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy Globus --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployGlobus" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy JBOSS --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployJBoss" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy Tomcat --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployTomcat"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy Globus --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployGlobus"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy JBOSS --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployJBoss"> | ||
|
||
</target> | ||
|
||
|
||
|
||
</project> | ||
<?xml version="1.0"?> | ||
|
||
<!--L | ||
Copyright Washington University in St. Louis | ||
Copyright SemanticBits | ||
Copyright Persistent Systems | ||
Distributed under the OSI-approved BSD 3-Clause License. | ||
See http://ncip.github.com/gsid/LICENSE.txt for details. | ||
L--> | ||
|
||
<project name="developers-build-deploy file" basedir="."> | ||
<!-- ============================================================== --> | ||
<!-- This file is designed to allow the developer to extend the --> | ||
<!-- deploy process without having to edit the build-deploy.xml --> | ||
<!-- file. DO NOT REMOVE ANY TARGETS --> | ||
<!-- ============================================================== --> | ||
|
||
<target name="copyExtLibs"> | ||
|
||
<copy todir="${build.lib.dir}"> | ||
<fileset dir="${ext.lib.dir}"> | ||
<include name="*.jar" /> | ||
</fileset> | ||
</copy> | ||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy Tomcat --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployTomcat" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy Globus --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployGlobus" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Pre Deploy JBOSS --> | ||
<!-- ============================================================== --> | ||
<target name="preDeployJBoss" depends="copyExtLibs"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy Tomcat --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployTomcat"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy Globus --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployGlobus"> | ||
|
||
</target> | ||
|
||
|
||
<!-- ============================================================== --> | ||
<!-- Post UnDeploy JBOSS --> | ||
<!-- ============================================================== --> | ||
<target name="postUndeployJBoss"> | ||
|
||
</target> | ||
|
||
|
||
|
||
</project> |
Oops, something went wrong.