Author: jgao
Date: 2009-06-07 15:23:07 -0700 (Sun, 07 Jun 2009)
New Revision: 16865
Added:
csplugins/trunk/soc/jgao/IDMapping/build.xml
csplugins/trunk/soc/jgao/IDMapping/plugin.props
csplugins/trunk/soc/jgao/IDMapping/src/
Log:
project setup
Added: csplugins/trunk/soc/jgao/IDMapping/build.xml
===================================================================
--- csplugins/trunk/soc/jgao/IDMapping/build.xml
(rev 0)
+++ csplugins/trunk/soc/jgao/IDMapping/build.xml 2009-06-07 22:23:07 UTC
(rev 16865)
@@ -0,0 +1,63 @@
+
+
+<project name="IDMapping" default="jar" basedir=".">
+ <description>Builds, tests, and runs the project IDMapping.</description>
+
+ <!-- =================================================================== -->
+ <!-- Initialization target -->
+ <!-- =================================================================== -->
+ <target name="init">
+ <tstamp/>
+ <property name="src" location="src"/>
+ <property name="images" value="images"/>
+ <property name="lib" location="lib"/>
+ <property name="build" location="build"/>
+ <property name="build.classes" location="${build}/classes"/>
+ <property name="build.images" location="${build.classes}/images"/>
+ </target>
+
+ <!-- =================================================================== -->
+ <!-- Compiles the project -->
+ <!-- =================================================================== -->
+ <target name="compile" depends="init">
+ <mkdir dir="${build}"/>
+ <mkdir dir="${build.classes}"/>
+ <javac srcdir="${src}" destdir="${build.classes}">
+ <classpath>
+ <pathelement location="lib/giny.jar"/>
+ <pathelement location="lib/cytoscape.jar"/>
+ <pathelement location="lib/cytoscape-task.jar"/>
+ </classpath>
+ </javac>
+ </target>
+
+ <!-- =================================================================== -->
+ <!-- Clean up, get back to original state -->
+ <!-- =================================================================== -->
+ <target name="clean" depends="init">
+ <echo message="delete ${build}"/>
+ <delete dir="${build}"/>
+ </target>
+
+ <!-- =================================================================== -->
+ <!-- Creates the project jar file -->
+ <!-- =================================================================== -->
+ <target name="jar" depends="compile">
+ <copy file="plugin.props" todir="${build.classes}/csplugins/id/mapping" />
+ <copy todir="${build.images}">
+ <fileset dir="${images}"/>
+ </copy>
+ <jar destfile="CyThesaurus.jar">
+ <manifest>
+ <attribute name="Cytoscape-Plugin"
+ value="csplugins.id.mapping.CyThesaurus" />
+ </manifest>
+
+ <fileset dir= "${build.classes}" />
+ </jar>
+ </target>
+
+</project>
+
+
+
Added: csplugins/trunk/soc/jgao/IDMapping/plugin.props
===================================================================
--- csplugins/trunk/soc/jgao/IDMapping/plugin.props
(rev 0)
+++ csplugins/trunk/soc/jgao/IDMapping/plugin.props 2009-06-07 22:23:07 UTC
(rev 16865)
@@ -0,0 +1,37 @@
+#plugin.props
+
+# This props file should be filled out and included in the plugin jar file.
This props file will be used
+# to put information into the Plugin Manager about the plugin
+
+# -- The following properties are REQUIRED -- #
+
+# The plugin name that will be displayed to users, white space within name is
not allowed
+pluginName=CyThesaurus
+
+# Description used to give users information about the plugin such as what it
does.
+# Html tags are encouraged for formatting purposes.
+pluginDescription=Provides utilities for mapping attributes of source ID types
to new attributes of destination ID types.
+
+# Plugin version number, this must be two numbers separated by a decimlal.
Ex. 0.2, 14.03
+pluginVersion=1.00
+
+# Compatible Cytoscape version. If there are more than one version, seperate
by ",".
+cytoscapeVersion=2.6
+
+# Category, use one of the categories listed on the
http://cytoscape.org/plugins2.php site
+pluginCategory=Other
+
+# -- The following properties are OPTIONAL -- #
+
+# URL to a website that gives more information about your plugin, Ex.
http://my-lab-site.org
+projectURL=http://socrates2.cgl.ucsf.edu/GenMAPP/wiki/Google_Summer_of_Code_2009/Jianjiong
+
+# List of authors. Note each author and institution pair are separated by a :
(colon)
+# each additional author institution pair must be separated from other pairs
bye a ; (semicolon)
+pluginAuthorsIntsitutions=Jianjiong Gao : U. Missouri
+
+# Date this plugin/plugin version was released
+releaseDate=August 31, 2009
+
+# If this plugin is never meant to be downloaded except as part of a plugin
(not common) add this property. Default is "no"
+themeOnly=no
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en
-~----------~----~----~----~------~----~------~--~---