prezi / gradle-haxe-plugin

Gradle Haxe Plugin
Other
23 stars 4 forks source link

How do I just convert the haxe code to java for my test. #42

Open xiaoshao opened 8 years ago

xiaoshao commented 8 years ago

I added this plugin to gradle by

    repositories {
        mavenLocal()
        mavenCentral()
    }

dependencies { classpath 'com.prezi.haxe:gradle-haxe-plugin:5.0' }


}

apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'haxe'

And I added haxe code in /src/test/haxe directory. Now I want to convert code in the haxe directory to java. and use these codes in my test.