- Disabled assertions during unit-test execution as the Ant counterpart had them disabled too (We'll fix this after finishing the migration)
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/8c7ea138 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/8c7ea138 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/8c7ea138 Branch: refs/heads/feature/maven-migration Commit: 8c7ea138a040afc7a6d0589a79b4405f25e98e83 Parents: 729c0fc Author: Christofer Dutz <[email protected]> Authored: Wed Feb 24 09:49:08 2016 +0100 Committer: Christofer Dutz <[email protected]> Committed: Wed Feb 24 09:49:08 2016 +0100 ---------------------------------------------------------------------- compiler/pom.xml | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/8c7ea138/compiler/pom.xml ---------------------------------------------------------------------- diff --git a/compiler/pom.xml b/compiler/pom.xml index 95f0c2b..4416749 100644 --- a/compiler/pom.xml +++ b/compiler/pom.xml @@ -311,6 +311,14 @@ <airVersion>${air.version}</airVersion> <mavenLocalRepoDir>${settings.localRepository}</mavenLocalRepoDir> </systemPropertyVariables> + <!-- + Currently some tests need this to be disabled, + but actually this is a bug. For now I'll disable + them to avoid problems during the maven migration. + After this is finished, we should defnitely fix + the tests so assertions can be enabled. + --> + <enableAssertions>false</enableAssertions> </configuration> </plugin> </plugins>
