Skip to end of metadata
Go to start of metadata
60%

Open Issues

  1. handler

    Customize dependency management for package maintainers.

    MEDIUM
    hans_d
    N/A
  2. handler

    Don't let test output appear on console

    MEDIUM
    hans_d
    Apr 09, 2010
  3. handler

    Add missing descriptions to Gradle tasks

    MEDIUM
    hans_d
    Apr 10, 2010
  4. handler

    Let groovydoc run in forked mode.

    MEDIUM
    hans_d
    Apr 19, 2010
  5. handler

    Write a task that checks that Gradle runs the same tests as ant

    MEDIUM
    hans_d
    N/A
    Apr 09, 2010
  6. handler

    Make Groovy compile on Java 5

    MEDIUM
    hans_d
    Apr 09, 2010
    Apr 09, 2010
  7. handler

    Write a task that checks that Gradle generates a similar pom to ant

    MEDIUM
    hans_d
    N/A
    Apr 10, 2010
  8. handler

    Make install dir customizable

    MEDIUM
    hans_d
    Apr 09, 2010
    Apr 10, 2010
  9. handler

    Refactor static pom definition into extra file.

    MEDIUM
    hans_d
    Apr 10, 2010
    Apr 10, 2010
  10. handler

    Fix failing tests

    MEDIUM
    hans_d
    Apr 09, 2010
    Apr 13, 2010

Compare with Ant

What to compare

Create Ant Input

Create Gradle Input

Compare

Description

Archives

ant dist -Dtest=false

rm -rf target/classes;./gradlew assemble

./gradlew compareArchives

Compares that all the jars contains the same paths and have the same manifest. Compares that all the zips have the same paths. As we use the same output structure as the Ant build we need to remove the classes dir of the Ant build (as its put some Meta-Inf stuff in there we generate differently).

Run Tests

ant test

./gradlew test

./gradlew compareTests

Compares the result XML of the Ubertest cases. Checks that the same tests are run by Ant and Gradle.

Poms

ant installRepo

./gradlew generatePoms

./gradlew comparePoms

Compares that the Ant pom's have the exactly the same dependencies (including optional, scope and exclusions) as the Gradle pom.

Tests failing when not forking per test:

LineColumnChecker
groovy.ListTest

Labels
  • None