diff options
Diffstat (limited to 'snmpmapper/build.gradle')
-rw-r--r-- | snmpmapper/build.gradle | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/snmpmapper/build.gradle b/snmpmapper/build.gradle new file mode 100644 index 0000000..00c0e39 --- /dev/null +++ b/snmpmapper/build.gradle @@ -0,0 +1,32 @@ +buildscript { + repositories { + mavenCentral() + } + dependencies { + classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE") + } +} + +apply plugin: 'java' +apply plugin: 'eclipse' +apply plugin: 'org.springframework.boot' +apply plugin: 'io.spring.dependency-management' + +jar { + baseName = 'gs-uploading-files' + version = '0.1.0' +} + +repositories { + mavenCentral() +} + +sourceCompatibility = 1.8 +targetCompatibility = 1.8 + +dependencies { + compile("org.springframework.boot:spring-boot-starter-web") + compile("org.springframework.boot:spring-boot-starter-thymeleaf") + testCompile("org.springframework.boot:spring-boot-starter-test") +} + |