quickprojects
Version:
QuickProjects makes it easy to create templates for programming projects without having to use an IDE.
40 lines (32 loc) • 1.12 kB
Plain Text
//Uncomment the buildscript below to include Kotlin and JavaFX in your project
/*
buildscript {
ext.kotlin_version = '1.1.1'
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
repositories {
mavenLocal()
mavenCentral()
}
}
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'application'
// apply plugin: 'kotlin'
// apply plugin: 'javafx-gradle-plugin'
mainClassName = 'mainPackage.Main'
defaultTasks 'run'
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
// Uncomment the line below for a project that uses MongoDB
// compile 'org.mongodb:mongodb-driver:3.4.2'
// Uncoment the line below for a project that uses the Kotlin programming language
// compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}