Repository: incubator-taverna-language Updated Branches: refs/heads/master a80014c66 -> a71c4e011
Maven profile for android to build workflow parsers only. Excludes modules with java 8 language features. Project: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/commit/6fa00b3a Tree: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/tree/6fa00b3a Diff: http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/diff/6fa00b3a Branch: refs/heads/master Commit: 6fa00b3a29777e7eefd3f48b583fcdfb4e3000dc Parents: a80014c Author: Ian Dunlop <[email protected]> Authored: Fri Sep 23 12:53:00 2016 +0100 Committer: Ian Dunlop <[email protected]> Committed: Fri Sep 23 12:53:00 2016 +0100 ---------------------------------------------------------------------- pom.xml | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-taverna-language/blob/6fa00b3a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 9dcb863..af5f393 100644 --- a/pom.xml +++ b/pom.xml @@ -31,7 +31,6 @@ <description>Taverna Language API for workflow definitions (SCUFL2) and workflow inputs/outputs/run (DataBundle). </description> - <build> <plugins> <plugin> @@ -274,7 +273,12 @@ additional dependencies to be a happy OSGi bundle --> </dependency> </dependencies> - +<profiles> +<profile> +<id>all</id> + <activation> + <activeByDefault>true</activeByDefault> + </activation> <modules> <module>taverna-baclava-language</module> <module>taverna-databundle</module> @@ -291,4 +295,33 @@ additional dependencies to be a happy OSGi bundle --> <module>taverna-tavlang-tool</module> <module>taverna-scufl2-wfdesc</module> </modules> +</profile> + <profile> + <id>android</id> + <!-- <activation> + <property> + <name>environment</name> + <value>android</value> + </property> + </activation>--> + <properties> +<maven.compiler.source>1.7</maven.compiler.source> +<maven.compiler.target>1.7</maven.compiler.target> +</properties> + <modules> + <module>taverna-baclava-language</module> + <module>taverna-scufl2-annotation</module> + <module>taverna-scufl2-api</module> + <module>taverna-scufl2-examples</module> + <module>taverna-scufl2-integration-tests</module> + <module>taverna-scufl2-schemas</module> + <module>taverna-scufl2-scufl</module> + <module>taverna-scufl2-t2flow</module> + <module>taverna-scufl2-ucfpackage</module> + <module>taverna-scufl2-wfbundle</module> + <module>taverna-tavlang-tool</module> + </modules> + </profile> +</profiles> + </project>
