Fixing the assembly plugin to include directories instead of files
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/cc0bc994 Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/cc0bc994 Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/cc0bc994 Branch: refs/heads/workflow-support Commit: cc0bc994ebf5c8c9ca26202e5156fc1124914a1c Parents: 1a223e8 Author: Suresh Marru <[email protected]> Authored: Sun Jul 13 21:49:12 2014 -0400 Committer: Suresh Marru <[email protected]> Committed: Sun Jul 13 21:49:12 2014 -0400 ---------------------------------------------------------------------- .../src/main/assembly/bin-assembly.xml | 3 +- .../airavata-php-sdk/src/main/resources/INSTALL | 31 - .../airavata-php-sdk/src/main/resources/LICENSE | 1866 ------------------ .../airavata-php-sdk/src/main/resources/NOTICE | 160 +- .../conf/airavata-client-properties.ini | 2 +- 5 files changed, 4 insertions(+), 2058 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/cc0bc994/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/assembly/bin-assembly.xml ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/assembly/bin-assembly.xml b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/assembly/bin-assembly.xml index 33d5ffe..12a7555 100644 --- a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/assembly/bin-assembly.xml +++ b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/assembly/bin-assembly.xml @@ -45,7 +45,8 @@ <outputDirectory>${archive.name}-${version}</outputDirectory> <includes> <include>php-cli-samples/*</include> - <include>lib/*</include> + <include>lib/**</include> + <include>conf/*</include> <include>LICENSE</include> <include>NOTICE</include> <include>README</include> http://git-wip-us.apache.org/repos/asf/airavata/blob/cc0bc994/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/INSTALL ---------------------------------------------------------------------- diff --git a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/INSTALL b/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/INSTALL deleted file mode 100644 index c815ce0..0000000 --- a/airavata-api/airavata-client-sdks/airavata-php-sdk/src/main/resources/INSTALL +++ /dev/null @@ -1,31 +0,0 @@ -Installing Apache Airavata Client 0.11 --------------------------------------- - -Prerequisites -------------- -Java 1.5 or later -Maven (tested on v 3.0.2) - -Build Apache Airavata from Source ---------------------------------- -* Unzip/untar the source file or check out from svn. -* cd to project folder and type - $ mvn clean install - Note: in order to skip tests use the command - $ mvn clean install -Dmaven.test.skip=true -* The compressed binary distribution is created at <PROJECT DIR>/modules/distribution/airavata-client/target - -Installing the Airavata Client Libraries ----------------------------------------- -* Add all the libraries (jar files) in the <AIRAVATA_CLIENT_HOME>/lib directory to the classpath -* Add the <AIRAVATA_CLIENT_HOME>/conf directory to the classpath - -Running Tests -------------- -Once the binary is unzipped, instructions to run the tests should be follow from README - -Tutorials ----------- -The airavata website has instructions for basic tutorials: -* For basic understanding on how to use Airavata API please look at the samples shipped with the distribution -* Follow Airavata Wiki for more examples on how to use the Airavata API - https://cwiki.apache.org/confluence/display/AIRAVATA/Gateway+Developer+Guide
