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>
Subversion Mirror: <http://code.google.com/p/jsdoc/source>
License
-------

View File

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

View File

@ -13,21 +13,24 @@
"repositories": [
{
"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" : [
{
"name": "Michael Mathews",
"email": "micmath@gmail.com",
"web": "http://micmath.ws"
"email": "micmath@gmail.com"
}
],
"maintainers": [
{
"name": "Michael Mathews",
"email": "micmath@gmail.com",
"web": "http://micmath.ws"
"email": "micmath@gmail.com"
}
]
}