mirror of
https://github.com/EDCD/EDDN.git
synced 2025-04-24 04:10:53 +03:00
25 lines
346 B
Groovy
25 lines
346 B
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'idea'
|
|
|
|
jar {
|
|
baseName = 'eddn-java-example'
|
|
version = '0.0.1'
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceCompatibility = 11
|
|
targetCompatibility = 11
|
|
|
|
dependencies {
|
|
compile group: 'org.zeromq', name: 'jeromq', version: '0.4.0'
|
|
}
|