luoynagwei hace 9 meses
padre
commit
767aa9701e
Se han modificado 2 ficheros con 6 adiciones y 6 borrados
  1. 5 5
      Makefile
  2. 1 1
      build.gradle

+ 5 - 5
Makefile

@@ -15,25 +15,25 @@ init:
 
 gateway: init
 	./gradlew :api-gateway:clean :api-gateway:bootJar
-	cp ./api-gateway/build/libs/api-gateway-1.0.0-SNAPSHOT.jar /opt/api-gateway/api-gateway.jar
+	cp ./api-gateway/build/libs/api-gateway-1.0.1.jar /opt/api-gateway/api-gateway.jar
 	sudo systemctl restart api-gateway
 
 user: init
 	./gradlew :api-user:clean :api-user:bootJar
-	cp ./api-user/build/libs/api-user-1.0.0-SNAPSHOT.jar /opt/api-user/api-user.jar
+	cp ./api-user/build/libs/api-user-1.0.1.jar /opt/api-user/api-user.jar
 	sudo systemctl restart api-user
 
 message: init
 	./gradlew :api-message:clean :api-message:bootJar
-	cp ./api-message/build/libs/api-message-1.0.0-SNAPSHOT.jar /opt/api-message/api-message.jar
+	cp ./api-message/build/libs/api-message-1.0.1.jar /opt/api-message/api-message.jar
 	sudo systemctl restart api-message
 
 location: init
 	./gradlew :api-location:clean :api-location:bootJar
-	cp ./api-location/build/libs/api-location-1.0.0-SNAPSHOT.jar /opt/api-location/api-location.jar
+	cp ./api-location/build/libs/api-location-1.0.1.jar /opt/api-location/api-location.jar
 	sudo systemctl restart api-location
 
 websocket: init
 	./gradlew :api-websocket:clean :api-websocket:bootJar
-	cp ./api-websocket/build/libs/api-websocket-1.0.0-SNAPSHOT.jar /opt/api-websocket/api-websocket.jar
+	cp ./api-websocket/build/libs/api-websocket-1.0.1.jar /opt/api-websocket/api-websocket.jar
 	sudo systemctl restart api-websocket

+ 1 - 1
build.gradle

@@ -22,7 +22,7 @@ allprojects {
     }
 
     repositories {
-//        maven { url 'https://maven.aliyun.com/repository/public' }
+        maven { url 'https://maven.aliyun.com/repository/public' }
         mavenCentral()
     }