Updated package.json to include new svn repo.

This commit is contained in:
Michael Mathews 2011-02-05 23:35:56 +00:00
parent 334ea0b24b
commit 6917abcc4f
3 changed files with 45 additions and 36 deletions

View File

@ -36,6 +36,7 @@ See
--- ---
Project Documentation: <http://micmath.github.com/jsdoc> Project Documentation: <http://micmath.github.com/jsdoc>
Subversion Mirror: <http://code.google.com/p/jsdoc/source>
License License
------- -------

View File

@ -1,6 +1,7 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<project name="JSDoc-3" default="jar-install"> <project name="jsdoc" default="jar-install">
<property file="build/build.properties" /> <property file="build/build.properties" />
<property name="build.templates" location="build/templates" /> <property name="build.templates" location="build/templates" />
@ -8,6 +9,7 @@
<format property="NOW" pattern="yyyy-MM-dd-HHmm" locale="en,UK"/> <format property="NOW" pattern="yyyy-MM-dd-HHmm" locale="en,UK"/>
</tstamp> </tstamp>
<!-- build the package.json file -->
<target name="about"> <target name="about">
<delete file="package.json" quiet="true"/> <delete file="package.json" quiet="true"/>
<copy file="${build.templates}/package.json" tofile="package.json" > <copy file="${build.templates}/package.json" tofile="package.json" >
@ -21,6 +23,7 @@
</copy> </copy>
</target> </target>
<!-- commit a copy of master to subversion -->
<target name="mirror"> <target name="mirror">
<exec executable="/usr/local/git/bin/git"> <exec executable="/usr/local/git/bin/git">
<arg value="svn" /> <arg value="svn" />
@ -28,6 +31,7 @@
</exec> </exec>
</target> </target>
<!-- steps to build and install the jsdoc.jar file: clean, compile, build -->
<target name="jar-clean"> <target name="jar-clean">
<delete dir="build/java/build" /> <delete dir="build/java/build" />
<delete file="jsdoc.jar" /> <delete file="jsdoc.jar" />
@ -59,6 +63,7 @@
</jar> </jar>
</target> </target>
<!-- do all the steps to build and install the jsdoc.jar file -->
<target name="jar-install" depends="jar-clean, jar-build"> <target name="jar-install" depends="jar-clean, jar-build">
<copy file="build/java/build/jar/jsdoc.jar" tofile="jsdoc.jar" overwrite="true" /> <copy file="build/java/build/jar/jsdoc.jar" tofile="jsdoc.jar" overwrite="true" />
</target> </target>

View File

@ -13,21 +13,24 @@
"repositories": [ "repositories": [
{ {
"type": "git", "type": "git",
"url": "http://github.com/micmath/JSDoc" "url": "git://github.com/micmath/jsdoc.git"
},
{
"type": "svn",
"url": "https://jsdoc.googlecode.com/svn/trunk"
} }
], ],
"bugs": "http://code.google.com/p/jsdoc/issues/list",
"contributors" : [ "contributors" : [
{ {
"name": "Michael Mathews", "name": "Michael Mathews",
"email": "micmath@gmail.com", "email": "micmath@gmail.com"
"web": "http://micmath.ws"
} }
], ],
"maintainers": [ "maintainers": [
{ {
"name": "Michael Mathews", "name": "Michael Mathews",
"email": "micmath@gmail.com", "email": "micmath@gmail.com"
"web": "http://micmath.ws"
} }
] ]
} }