Newer
Older
ServerTester / build.gradle
@motoki miura motoki miura on 20 Aug 782 bytes gradle
/*
 * This file was generated by the Gradle 'init' task.
 */

plugins {
    id 'java-library'
    id 'maven-publish'
}

repositories {
    mavenLocal()
    maven {
        url = uri('https://repo.maven.apache.org/maven2/')
    }
}

dependencies {
    api libs.com.fifesoft.autocomplete
    api libs.org.java.websocket.java.websocket
    api libs.org.slf4j.slf4j.nop
    testImplementation libs.junit.junit
}

group = 'info.istlab.ServerTester'
version = '1.0'
description = 'ServerTester'
java.sourceCompatibility = JavaVersion.VERSION_17

publishing {
    publications {
        maven(MavenPublication) {
            from(components.java)
        }
    }
}

tasks.withType(JavaCompile) {
    options.encoding = 'UTF-8'
}

tasks.withType(Javadoc) {
    options.encoding = 'UTF-8'
}