From a65a9256b239597dc46b700a2e608a1038a8b1fb Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Wed, 3 Apr 2013 18:21:15 +0200 Subject: [PATCH] Add ABC build setup --- .gitignore | 4 ++++ .gitmodules | 3 +++ build.properties | 14 ++++++++++++++ build.xml | 44 ++++++++++++++++++++++++++++++++++++++++++++ setup | 1 + 5 files changed, 66 insertions(+) create mode 100644 .gitmodules create mode 100644 build.properties create mode 100644 build.xml create mode 160000 setup diff --git a/.gitignore b/.gitignore index 6e3a3c2..1cadc9a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ vendor refactor.phar +.abc +.pear +build/ +composer.phar diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d5023a9 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "setup"] + path = setup + url = git://github.com/Qafoo/build-commons.git diff --git a/build.properties b/build.properties new file mode 100644 index 0000000..881d52d --- /dev/null +++ b/build.properties @@ -0,0 +1,14 @@ +project.name = PHP Refactoring Browser +project.version = 0.0.1 +project.stability = alpha + +# The commons based directory will be used to calculate several build related +# paths and directories. Therefore we will keep it separated and independent for +# each component in the component's basedir. +commons.basedir = ${basedir} + +# Base directories with PHP source and test files +commons.srcdir = ${basedir}/src/main +commons.srcdir.php = ${basedir}/src/main +commons.testdir.php = ${basedir}/src/test + diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..e326e24 --- /dev/null +++ b/build.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/setup b/setup new file mode 160000 index 0000000..37629af --- /dev/null +++ b/setup @@ -0,0 +1 @@ +Subproject commit 37629af98986b0adc0aa788cde10f54dc5991792