callistaenterprise / goblog

Code samples for the Go microservice blog series
https://callistaenterprise.se/blogg/teknik/2017/02/17/go-blog-series-part1/
MIT License
378 stars 125 forks source link

missing library `se.callista.microservises:util:0.0.1-SNAPSHOT` #2

Open kelvinji2009 opened 7 years ago

kelvinji2009 commented 7 years ago

I built it from the repo of java microservice blog series.

diff --git a/support/edge-server/build.gradle b/support/edge-server/build.gradle
index fdf0e12..af6f1fb 100644
--- a/support/edge-server/build.gradle
+++ b/support/edge-server/build.gradle
@@ -49,7 +49,8 @@ dependencies {
     // compile("org.springframework.cloud:spring-cloud-starter-oauth2")
     // compile("org.springframework.cloud:spring-cloud-starter-security")

-     compile("se.callista.microservises:util:0.0.1-SNAPSHOT")
+    // compile("se.callista.microservises:util:0.0.1-SNAPSHOT")
+    compile files('libs/util-0.0.1-SNAPSHOT.jar')

      testCompile('org.springframework.boot:spring-boot-starter-test')
 }
tebrizetayi commented 4 years ago

How did you solve this issue?