Repository: incubator-apex-malhar Updated Branches: refs/heads/devel-3 e7892f35c -> a7f5e1121
MLHR-1871 Fix release profile build, enable licence check in CI. Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/commit/a7f5e112 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/tree/a7f5e112 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/diff/a7f5e112 Branch: refs/heads/devel-3 Commit: a7f5e1121aecb8e45040c4aa53c681a5aec500f8 Parents: e7892f3 Author: Thomas Weise <[email protected]> Authored: Wed Oct 14 20:24:48 2015 -0700 Committer: Thomas Weise <[email protected]> Committed: Wed Oct 14 20:24:48 2015 -0700 ---------------------------------------------------------------------- .travis.yml | 5 +++++ apps/pom.xml | 11 ++++++++++- pom.xml | 4 ++-- 3 files changed, 17 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/a7f5e112/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 773a507..ec6a4dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,3 +15,8 @@ language: java +script: mvn apache-rat:check verify -Dlicense.skip=false -Pall-modules + +notifications: + slack: + secure: GlWD2EjgNC6Lg2DtAfZuKhg2RTHE0FMeyfHH24D7TKmV49gRVTzTTqvExwOdLLYDDIu966eOF5w90/PfiD11A4rpm6+WyjRHDkpOhTyjBKWc2btMqNwiP1hRf2uKEG6A+RgszaQJ4HkGiMxIpDJ3o/jaTpBseOeA399t8Z7Pkd6obXVAEMcnm2XtfUPzIBqGblVkiecS3OzbkzjKWaOG6+nlp+ajVO7MazsOR05JNZ1MXnDOK/Qq/7xLBtweF4r/O8okyg52fST4pGqk4JTTI++bVFoRySpjNWSSJbdrfkWG/7h0sfqMcwMj8TpZqojcCuTvZih+IyPZwX3MP6Ls4bF6OFcD3BvWg049WbstA6ZdKnVW9fOiJoJ+Bx9gNI0tKtYeDt/8nMBfSRVMmzRVEGdTOEEpFs7n79OVVytwbp8qYFU+waqlG1/tMQvCclSaxuY8d236Ybg410KLiMQ0YhQ8ZaTVagHu2l0KrfV16Xq3/CRsolHa8k7PxDzmCxdi07Ao/mrorQLmJWoc7FkxEw6ZrEGHP17HTn5uidoTkANgGak4AVgrJm6zLKdAERxvr1KMnfyuJLT1ZK1x73SV+3EpdzcMLxvq2dMaBpZcfARiYB04EwSHVBdm/D0AIZtRL2s1rG85y1OtCkDMd04ZEvbwdKYZ+fD+HjTn7Zo7AKM= http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/a7f5e112/apps/pom.xml ---------------------------------------------------------------------- diff --git a/apps/pom.xml b/apps/pom.xml index 1b1f67c..5375604 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -37,12 +37,19 @@ </modules> <properties> - <!-- change this if you desire to use a different version of DataTorrent --> <datatorrent.apppackage.classpath>lib/*.jar</datatorrent.apppackage.classpath> <maven.deploy.skip>true</maven.deploy.skip> <maven.install.skip>true</maven.install.skip> </properties> + <profiles> + <profile> + <id>apps-plugin-activation</id> + <activation> + <file> + <exists>${basedir}/src/main</exists> + </file> + </activation> <build> <pluginManagement> <plugins> @@ -160,4 +167,6 @@ </plugins> </pluginManagement> </build> + </profile> + </profiles> </project> http://git-wip-us.apache.org/repos/asf/incubator-apex-malhar/blob/a7f5e112/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e9cea2f..1afdf3c 100644 --- a/pom.xml +++ b/pom.xml @@ -145,6 +145,8 @@ <id>all-modules</id> <modules> <module>benchmark</module> + <module>apps</module> + <module>samples</module> </modules> </profile> </profiles> @@ -153,8 +155,6 @@ <module>library</module> <module>contrib</module> <module>demos</module> - <module>samples</module> - <module>apps</module> </modules> <dependencies>
