17 lines
285 B
Kotlin
17 lines
285 B
Kotlin
/*
|
|
* Examples for Java
|
|
*
|
|
* Copyright (c) 2021. Elex. All Rights Reserved.
|
|
* https://www.elex-project.com/
|
|
*/
|
|
|
|
plugins {
|
|
id("elex-java")
|
|
}
|
|
|
|
dependencies {
|
|
// https://mvnrepository.com/artifact/com.google.code.gson/gson
|
|
implementation("com.google.code.gson:gson:2.10.1")
|
|
|
|
}
|