feat: Add mapper for objects with same fields

This commit is contained in:
Krrish Ghimire
2019-12-03 22:49:20 +05:45
commit 2f1475b4cd
11 changed files with 365 additions and 0 deletions

24
build.gradle Normal file
View File

@@ -0,0 +1,24 @@
plugins {
id 'java'
}
group 'np.com.krrish'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
jcenter()
}
sourceSets.main.java.srcDirs = ['src']
sourceSets.test.java.srcDirs = ['test']
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
}