Newer
Older
XMPP_Zabbix_Alert / build.gradle
@y.varenkov y.varenkov on 25 Feb 2022 916 bytes Initial commit
plugins {
    id 'java'
}

group 'org.mfnd'
version '1.0-SNAPSHOT'

repositories {
    maven {
        url 'https://oss.sonatype.org/content/repositories/snapshots'
    }
    mavenCentral()
}

dependencies {
    testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
    testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
    implementation 'org.igniterealtime.smack:smack-java8:4.4.4'
    // Optional for XMPPTCPConnection
    implementation 'org.igniterealtime.smack:smack-tcp:4.4.4'
    // Optional for XMPP-IM (RFC 6121) support (Roster, Threaded Chats, …)
    implementation 'org.igniterealtime.smack:smack-im:4.4.4'
    // Optional for XMPP extensions support
    //implementation 'org.igniterealtime.smack:smack-extensions:4.4.3'

}

test {
    useJUnitPlatform()
}

//jar {
//    manifest {
//        attributes(
//                'Main-Class': 'com.mfnd.Main'
//        )
//    }
//}