Merge pull request #14 from aasaru/FINCN-180

FINCN-180 remove non-needed data source from configuration
diff --git a/service/src/main/resources/application.yml b/service/src/main/resources/application.yml
index a6b7d13..a14c2fc 100644
--- a/service/src/main/resources/application.yml
+++ b/service/src/main/resources/application.yml
@@ -40,16 +40,13 @@
       enabled: false
     config:
       enabled: false
-  datasource:
-    driver-class-name: org.postgresql.Driver
-    url: jdbc:postgresql://localhost:5432/seshat
-    username: postgres
-    password: postgres
 
 eureka:
   client:
     serviceUrl:
       defaultZone: http://localhost:8761/eureka/
+  instance:
+    homePageUrl: "http://${eureka.hostname}:2032/group/v1/"
 
 server:
   port: 2032
diff --git a/shared.gradle b/shared.gradle
index 945b3ee..3e98b0a 100644
--- a/shared.gradle
+++ b/shared.gradle
@@ -83,7 +83,7 @@
         }
     }
 }
-artifactoryPublish.dependsOn('clean','publishToMavenLocal')
+artifactoryPublish.dependsOn('publishToMavenLocal')
 
 license {
     header rootProject.file('../HEADER')