diff options
author | BharathS24 <BS00493532@techmahindra.com> | 2018-03-27 19:03:40 +0530 |
---|---|---|
committer | BharathS24 <BS00493532@techmahindra.com> | 2018-03-27 19:03:54 +0530 |
commit | a0cd2159e2dbfde7613ea7dda8db1eacced4ca69 (patch) | |
tree | f7c66341abe5f3ffbae1441ce23ebb170b9c6033 /snmpmapper/build.gradle | |
parent | d4ee5e4e99611a20c091fca6782ded05b560504f (diff) |
Added snmpmapper in Mapper
Commiting new Module in Mapper
Change-Id: I6fe49f5bf980bfc68abca89a7494f640942fe474
Issue-ID: DCAEGEN2-338
Signed-off-by: BharathS24 <BS00493532@techmahindra.com>
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") +} + |