Merge pull request #10 from aasaru/FINCN-180

FINCN-180 remove tenant-specific data source from configuration
diff --git a/service/src/main/resources/application.yml b/service/src/main/resources/application.yml
index d3dda73..61dde9c 100644
--- a/service/src/main/resources/application.yml
+++ b/service/src/main/resources/application.yml
@@ -23,16 +23,13 @@
       enabled: false
     config:
       enabled: false
-  datasource:
-    driver-class-name: org.postgresql.Driver
-    url: jdbc:postgresql://localhost:5432/playground
-    username: postgres
-    password: postgres
 
 eureka:
   client:
     serviceUrl:
       defaultZone: http://localhost:8761/eureka/
+  instance:
+    homePageUrl: "http://${eureka.hostname}:2030/cheques/v1/"
 
 server:
   port: 2030
diff --git a/shared.gradle b/shared.gradle
index 0285416..612a334 100644
--- a/shared.gradle
+++ b/shared.gradle
@@ -88,7 +88,7 @@
         }
     }
 }
-artifactoryPublish.dependsOn('clean','publishToMavenLocal')
+artifactoryPublish.dependsOn('publishToMavenLocal')
 
 license {
     header rootProject.file('../HEADER')