-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pump version to 1.1.0, add start script
- Loading branch information
Showing
12 changed files
with
46 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
group 'one.ulord.upaas' | ||
version '1.0.0' | ||
version '1.1.0' | ||
|
||
buildscript { | ||
ext { | ||
|
50 changes: 0 additions & 50 deletions
50
...c/main/java/one/ulord/upaas/ucwallet/service/base/intercetor/UserSecurityInterceptor.java
This file was deleted.
Oops, something went wrong.
61 changes: 0 additions & 61 deletions
61
...ervice/src/main/java/one/ulord/upaas/ucwallet/service/base/threadpool/ExecutorConfig.java
This file was deleted.
Oops, something went wrong.
80 changes: 0 additions & 80 deletions
80
.../java/one/ulord/upaas/ucwallet/service/base/threadpool/VisibleThreadPoolTaskExecutor.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
title upaas-ucwallet-service | ||
java -Dspring.profiles.active=dev -jar ucwallet-service-1.1.0.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
java -Dspring.profiles.active=dev -jar ucwallet-service-1.1.0.jar > /dev/null 2>&1 & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
PROG=ucwallet-service-1.1 | ||
|
||
pid=`ps aux | grep $PROG | grep -v "grep" | awk '{print $2}'` | ||
|
||
echo "PID is " $pid | ||
kill $pid | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
|
||
PROG="ucwallet-service-1.1" | ||
|
||
ps aux | grep $PROG | grep -v "grep" |