mirror of
https://github.com/nicolabs/ciform.git
synced 2025-09-05 04:44:11 +02:00
# 'javascript' source directories become 'js'
# scripts and properties synchronized # sample common properties now include a directory name (so the user really just has to unzip in tools/)
This commit is contained in:
parent
ec2ae7b2f0
commit
e518e6807e
|
@ -17,11 +17,8 @@
|
|||
#
|
||||
########################################
|
||||
|
||||
basedir=.
|
||||
tools.dir=../tools
|
||||
|
||||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/javascript
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
@ -29,5 +26,8 @@ build.dir=${basedir}/build
|
|||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# set to common properties file
|
||||
# A directory where all external tools can be found
|
||||
tools.dir=${basedir}/../tools
|
||||
|
||||
# Global properties file
|
||||
common.properties=${tools.dir}/build/common.properties
|
|
@ -17,10 +17,10 @@
|
|||
<artifact name="libciform" type="js" />
|
||||
</publications>
|
||||
<dependencies>
|
||||
<dependency org="nicobo" name="minilib" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="crypto" name="hex" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="crypto" name="base64" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="crypto" name="sha1" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="crypto" name="rsa" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="nicommons.javascript" name="minilib" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="nicommons.crypto" name="hex" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="nicommons.crypto" name="base64" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="nicommons.crypto" name="sha1" rev="latest.integration" conf="*->source" />
|
||||
<dependency org="nicommons.crypto" name="rsa" rev="latest.integration" conf="*->source" />
|
||||
</dependencies>
|
||||
</ivy-module>
|
||||
|
|
|
@ -17,23 +17,17 @@
|
|||
#
|
||||
########################################
|
||||
|
||||
basedir=.
|
||||
tools.dir=../../tools
|
||||
|
||||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/javascript
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Directory used to put temporary files during build
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
||||
# Where the generated files are going
|
||||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# Where the generated libraries are going
|
||||
lib.dir=${target.dir}/lib
|
||||
# A directory where all external tools can be found
|
||||
tools.dir=${basedir}/../../tools
|
||||
|
||||
# Where to copy the documentation
|
||||
doc.dir=${target.dir}/doc
|
||||
|
||||
# set to common properties file
|
||||
# Global properties file
|
||||
common.properties=${tools.dir}/build/common.properties
|
|
@ -1,8 +1,8 @@
|
|||
<ivy-module version="2.0">
|
||||
<info organisation="crypto" module="base64" revision="1.0.0" status="integration">
|
||||
<info organisation="nicommons.crypto" module="base64" revision="1.0.0" status="integration">
|
||||
<license name="Copyright 2005 Herbert Hanewinkel" url="www.haneWIN.de"/>
|
||||
<ivyauthor name="Nicolas BONARDELLE" url="http://nicobo.net/contact?subject=crypto+base64+ivy"/>
|
||||
<description homepage="http://code.google.com/p/ciform">
|
||||
<description homepage="http://ciform.googlecode.com">
|
||||
OpenPGP radix-64/base64 string encoding/decoding.
|
||||
</description>
|
||||
</info>
|
||||
|
|
|
@ -17,22 +17,17 @@
|
|||
#
|
||||
########################################
|
||||
|
||||
tools.dir=${basedir}/../../tools
|
||||
|
||||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/javascript
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Directory used to put temporary files during build
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
||||
# Where the generated files are going
|
||||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# Where the generated libraries are going
|
||||
lib.dir=${target.dir}/lib
|
||||
# A directory where all external tools can be found
|
||||
tools.dir=${basedir}/../../tools
|
||||
|
||||
# Where to copy the documentation
|
||||
doc.dir=${target.dir}/doc
|
||||
|
||||
# set to common properties file
|
||||
# Global properties file
|
||||
common.properties=${tools.dir}/build/common.properties
|
|
@ -1,7 +1,7 @@
|
|||
<ivy-module version="2.0">
|
||||
<info organisation="crypto" module="hex" revision="1.0.0" status="integration">
|
||||
<info organisation="nicommons.crypto" module="hex" revision="1.0.0" status="integration">
|
||||
<ivyauthor name="Nicolas BONARDELLE" url="http://nicobo.net/contact?subject=crypto+hex+ivy"/>
|
||||
<description homepage="http://code.google.com/p/ciform">
|
||||
<description homepage="http://ciform.googlecode.com">
|
||||
This library provides conversion functions from/to hexadecimal format.
|
||||
</description>
|
||||
</info>
|
||||
|
|
|
@ -17,23 +17,17 @@
|
|||
#
|
||||
########################################
|
||||
|
||||
basedir=.
|
||||
tools.dir=../../tools
|
||||
|
||||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/javascript
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Directory used to put temporary files during build
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
||||
# Where the generated files are going
|
||||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# Where the generated libraries are going
|
||||
lib.dir=${target.dir}/lib
|
||||
# A directory where all external tools can be found
|
||||
tools.dir=${basedir}/../../tools
|
||||
|
||||
# Where to copy the documentation
|
||||
doc.dir=${target.dir}/doc
|
||||
|
||||
# set to common properties file
|
||||
# Global properties file
|
||||
common.properties=${tools.dir}/build/common.properties
|
|
@ -1,9 +1,9 @@
|
|||
<ivy-module version="2.0">
|
||||
<info organisation="crypto" module="rsa" revision="1.0.0" status="integration">
|
||||
<info organisation="nicommons.crypto" module="rsa" revision="1.0.0" status="integration">
|
||||
<license name="Copyright 2000 by John M Hanna" url="http://sourceforge.net/projects/shop-js"/>
|
||||
<license name="GNU General Public License (GPL)" url="http://www.gnu.org/copyleft/gpl.html"/>
|
||||
<ivyauthor name="Nicolas BONARDELLE" url="http://nicobo.net/contact?subject=crypto+rsa+ivy"/>
|
||||
<description homepage="http://code.google.com/p/ciform">
|
||||
<description homepage="http://ciform.googlecode.com">
|
||||
This library provides a Javascript implementation of the RSA cipher.
|
||||
</description>
|
||||
</info>
|
||||
|
|
|
@ -17,23 +17,17 @@
|
|||
#
|
||||
########################################
|
||||
|
||||
basedir=.
|
||||
tools.dir=../../tools
|
||||
|
||||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/javascript
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Directory used to put temporary files during build
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
||||
# Where the generated files are going
|
||||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# Where the generated libraries are going
|
||||
lib.dir=${target.dir}/lib
|
||||
# A directory where all external tools can be found
|
||||
tools.dir=${basedir}/../../tools
|
||||
|
||||
# Where to copy the documentation
|
||||
doc.dir=${target.dir}/doc
|
||||
|
||||
# set to common properties file
|
||||
# Global properties file
|
||||
common.properties=${tools.dir}/build/common.properties
|
|
@ -1,9 +1,9 @@
|
|||
<ivy-module version="2.0">
|
||||
<info organisation="crypto" module="sha1" revision="1.0.0" status="integration">
|
||||
<info organisation="nicommons.crypto" module="sha1" revision="1.0.0" status="integration">
|
||||
<license name="Copyright Paul Johnston 2000 - 2002" url="http://pajhome.org.uk/crypt/md5"/>
|
||||
<license name="BSD License"/>
|
||||
<ivyauthor name="Nicolas BONARDELLE" url="http://nicobo.net/contact?subject=crypto+base64+ivy"/>
|
||||
<description homepage="http://code.google.com/p/ciform">
|
||||
<description homepage="http://ciform.googlecode.com">
|
||||
A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined in FIPS PUB 180-1
|
||||
</description>
|
||||
</info>
|
||||
|
|
|
@ -20,10 +20,10 @@
|
|||
# Where the source files are : here Maven-style
|
||||
src.dir=${basedir}/src/main/js
|
||||
|
||||
# Directory used to put temporary files during build
|
||||
# Temporary directory where to put intermediate files during build
|
||||
build.dir=${basedir}/build
|
||||
|
||||
# Where the generated files are going
|
||||
# Where the final files are going
|
||||
target.dir=${basedir}/target
|
||||
|
||||
# A directory where all external tools can be found
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<ivy-module version="2.0">
|
||||
<info organisation="nicobo" module="minilib" revision="1.0.0" status="integration">
|
||||
<info organisation="nicommons.javascript" module="minilib" revision="1.0.0" status="integration">
|
||||
<license name="BSD simplified" url="http://www.opensource.org/licenses/BSD-2-Clause"/>
|
||||
<ivyauthor name="Nicolas BONARDELLE" url="http://nicobo.net/contact?subject=minilib+ivy"/>
|
||||
<description homepage="http://ciform.googlecode.com">
|
||||
|
|
|
@ -34,7 +34,7 @@ jsunit.testRunner=${jsunit.dir}/testRunner.html
|
|||
# Ant settings
|
||||
|
||||
# (required) -> set to Ivy library containing Ant task
|
||||
ant.ivytask.path=${tools.dir}/ivy-2.2.0.jar
|
||||
ant.ivytask.path=${tools.dir}/apache-ivy-2.2.0/ivy-2.2.0.jar
|
||||
# (required) -> set to Javascript Ant template project
|
||||
ant.jsproject.path=${tools.dir}/build/ant-js.xml
|
||||
|
||||
|
@ -42,7 +42,7 @@ ant.jsproject.path=${tools.dir}/build/ant-js.xml
|
|||
|
||||
# Full path to the jar of the YUI compressor (http://developer.yahoo.com/yui/compressor)
|
||||
# (required) -> define this property in your "local.properties" file
|
||||
yuicompressor.jar=${tools.dir}/yuicompressor-2.4.7.jar
|
||||
yuicompressor.jar=${tools.dir}/yuicompressor-2.4.7/build/yuicompressor-2.4.7.jar
|
||||
|
||||
# Installation directory of JSDoc-toolkit (http://code.google.com/p/jsdoc-toolkit)
|
||||
# (required) -> define this property in your "local.properties" file
|
||||
|
|
Loading…
Reference in a new issue