All Projects → gradle → gradle2kts

gradle / gradle2kts

Licence: other
Gradle Groovy to Gradle Kotlin conversion tool - discontinued spike

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to gradle2kts

astravel
👟 Tiny and fast ESTree-compliant AST walker and modifier.
Stars: ✭ 38 (+11.76%)
Mutual labels:  ast
csv2keepassxml
Convert CSV files into KeePass 2 XML files.
Stars: ✭ 31 (-8.82%)
Mutual labels:  converter
docx-you-want
An unusual PDF-to-DOCX converter.
Stars: ✭ 40 (+17.65%)
Mutual labels:  converter
jsons2xsd
Highly configurable converter from JSON-schema to XML-schema (XSD).
Stars: ✭ 65 (+91.18%)
Mutual labels:  converter
avro-to-typescript
Compile Apache Avro schema files to TypeScript classes
Stars: ✭ 31 (-8.82%)
Mutual labels:  converter
it-tools
Aggregated set of useful tools that every developer may need once in a while.
Stars: ✭ 222 (+552.94%)
Mutual labels:  converter
i7n-pdfhtml
pdfHTML is an iText 7 add-on for C# (.NET) that allows you to easily convert HTML and CSS into standards compliant PDFs that are accessible, searchable and usable for indexing.
Stars: ✭ 111 (+226.47%)
Mutual labels:  converter
nodejs-eol-converter-cli
Newline (EOL) coverter CLI for NodeJs. CRLF -> LF or backwards conversion.
Stars: ✭ 33 (-2.94%)
Mutual labels:  converter
cvscan
Your not so typical resume parser
Stars: ✭ 46 (+35.29%)
Mutual labels:  converter
recode-converter
A modern & simple audio converter for video files
Stars: ✭ 22 (-35.29%)
Mutual labels:  converter
estree-to-babel
convert estree ast to babel
Stars: ✭ 23 (-32.35%)
Mutual labels:  ast
to-json-schema
Converts JS objects to JSON Schema
Stars: ✭ 83 (+144.12%)
Mutual labels:  converter
Wallpaper-Engine-Pkg-to-Zip
Simple program to convert the wallpaper engine pkg files to zip and back!
Stars: ✭ 57 (+67.65%)
Mutual labels:  converter
omakase
Java-based, plugin-oriented CSS3+ parser
Stars: ✭ 13 (-61.76%)
Mutual labels:  ast
rector-cakephp
Rector upgrades rules for CakePHP
Stars: ✭ 18 (-47.06%)
Mutual labels:  ast
astutils
Bare essentials for building abstract syntax trees, and skeleton classes for PLY lexers and parsers.
Stars: ✭ 13 (-61.76%)
Mutual labels:  ast
xml-avro
Convert XSD -> AVSC and XML -> AVRO
Stars: ✭ 32 (-5.88%)
Mutual labels:  converter
css-to-typestyle
Convert raw CSS to TypeStyle
Stars: ✭ 12 (-64.71%)
Mutual labels:  converter
crimson
Bioinformatics tool outputs converter to JSON or YAML
Stars: ✭ 30 (-11.76%)
Mutual labels:  converter
ocean
Programming language that compiles into a x86 ELF executable.
Stars: ✭ 164 (+382.35%)
Mutual labels:  ast

gradle2kts

Gradle Groovy to Gradle Kotlin conversion tool.

task compile {
    doLast {
        println 'compiling source'
    }
}

task compileTest(dependsOn: compile) {
    doLast {
        println 'compiling unit tests'
    }
}

task test(dependsOn: [compile, compileTest]) {
    doLast {
        println 'running unit tests'
    }
}

task dist(dependsOn: [compile, test]) {
    doLast {
        println 'building the distribution'
    }
}

Becomes:

val compile by tasks.creating {
    doLast {
        println("compiling source")
    }
}

val compileTest by tasks.creating {
    dependsOn(compile)
    doLast {
        println("compiling unit tests")
    }
}

val test by tasks.creating {
    dependsOn(compile, compileTest)
    doLast {
        println("running unit tests")
    }
}

val dist by tasks.creating {
    dependsOn(compile, test)
    doLast {
        println("building the distribution")
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].