September 2018
Intermediate to advanced
386 pages
11h 17m
English
In this section, we'll take a look at the basic build life cycle.
The basic goals of the build cycle are as follows:
The build.gradle file is as follows:
apply plugin: 'java'apply plugin: 'maven'apply plugin: 'idea'group = 'com.packt.serverless.kotlin.letspoll'version = '1.0.0'description = """Lets Poll API"""sourceCompatibility = 1.8targetCompatibility = 1.8tasks.withType(JavaCompile) { options.encoding = 'UTF-8'}buildscript { repositories { mavenCentral() maven { url ...
Read now
Unlock full access