|
From: <mar...@us...> - 2007-09-14 07:21:35
|
Revision: 57
http://gridsim.svn.sourceforge.net/gridsim/?rev=57&view=rev
Author: marcos_dias
Date: 2007-09-14 00:21:38 -0700 (Fri, 14 Sep 2007)
Log Message:
-----------
I have deleted the files to include GridSim Express.
Removed Paths:
-------------
branches/gridsim4.0-branch3/build.xml
branches/gridsim4.0-branch3/examples/
branches/gridsim4.0-branch3/jars/
branches/gridsim4.0-branch3/javadoc.sh
branches/gridsim4.0-branch3/source/
branches/gridsim4.0-branch3/testing/
Deleted: branches/gridsim4.0-branch3/build.xml
===================================================================
--- branches/gridsim4.0-branch3/build.xml 2007-09-02 07:34:45 UTC (rev 56)
+++ branches/gridsim4.0-branch3/build.xml 2007-09-14 07:21:38 UTC (rev 57)
@@ -1,68 +0,0 @@
-<?xml version="1.0"?>
-
-<!-- September 2004
-Build file or Makefile for GridSim.
-NOTE: Make sure you have installed 'ant' and put the location of it into
- your path so you can access it anywhere.
- 'ant' can be downloadable from http://ant.apache.org/
-
-Usage:
-* type 'ant' to compile all gridsim source files and put them into
- classes/ directory
-* type 'ant makejar' to compile the source files (if necessary) and to create
- a jar file into jar/ directory
-
-NOTE: rule for javadoc is not included yet. Use javadoc.sh script instead under
- Unix/Linux environment.
-
-Acknowledgement: Thank to Uros Cibej for providing this file and instruction on
- how to use it.
--->
-
-
-<project name="GridSim" basedir="." default="build">
- <description>
- This is the build file for GridSim
- </description>
-
- <!-- location to store Java classes -->
- <property name="class.dir" location="./classes" />
-
- <!-- location to store GridSim source files -->
- <property name="src.dir" location="./source/gridsim" />
-
- <!-- location to store jar files -->
- <property name="jar.dir" location="./jars" />
-
- <!-- location to store Javadoc files -->
- <property name="doc.dir" location="./doc" />
-
- <!-- location to use SimJava libraries -->
- <property name="classpath" location="${jar.dir}/simjava2.jar" />
-
-
-
- <target name="prepare">
- <mkdir dir="${class.dir}" />
- </target>
-
- <!-- rule to compile GridSim source files -->
- <target name="build" depends="prepare">
- <javac srcdir="${src.dir}" destdir="${class.dir}" classpath="${classpath}" />
- </target>
-
- <!-- rule for making a jar file.
- NOTE:
- * The new jar file is named as "new_gridsim.jar" to avoid overriding
- the existing jar file.
- * The new jar file only contains gridsim classes NOT SimJava2.
- -->
- <target name="makejar" depends="build">
- <echo>Compiling a new jar file, named: "new_gridsim.jar".</echo>
- <echo>This jar file only contains GridSim classes but not SimJava2.</echo>
- <jar destfile="${jar.dir}/new_gridsim.jar" basedir="${class.dir}" />
- </target>
-
-</project>
-
-
Deleted: branches/gridsim4.0-branch3/javadoc.sh
===================================================================
--- branches/gridsim4.0-branch3/javadoc.sh 2007-09-02 07:34:45 UTC (rev 56)
+++ branches/gridsim4.0-branch3/javadoc.sh 2007-09-14 07:21:38 UTC (rev 57)
@@ -1,35 +0,0 @@
-
-## A script to run javadoc (Anthony Sept 2004).
-
-year="2007" # year
-ver="v4.0-branch1" # version number
-
-dir=./source # source directory that contains Java files
-doc=./doc # output directory
-
-mkdir doc
-
-# Only creates GridSim javadoc.
-javadoc -author -version -package -noqualifier java.* \
- -windowtitle 'GridSim '$ver' API Specification' \
- -doctitle '<b>GridSim</b> '$ver' API Specification' \
- -header '<b>GridSim</b><br><font size='-1'>'$ver'</font>' \
- -bottom 'The University of Melbourne, Australia, '$year \
- -d $doc -breakiterator \
- -tag pre:a:"Pre Condition:" \
- -tag post:a:"Post Condition:" \
- -tag invariant:t:"Invariant:" \
- $dir/gridsim/*.java \
- $dir/gridsim/util/*.java \
- $dir/gridsim/net/*.java \
- $dir/gridsim/filter/*.java \
- $dir/gridsim/index/*.java \
- $dir/gridsim/auction/*.java \
- $dir/gridsim/datagrid/*.java \
- $dir/gridsim/datagrid/filter/*.java \
- $dir/gridsim/datagrid/index/*.java \
- $dir/gridsim/datagrid/storage/*.java \
- $dir/gridsim/resFailure/*.java
-
-echo "javadoc is done ...."
-
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|