File tree Expand file tree Collapse file tree 2 files changed +23
-23
lines changed
Expand file tree Collapse file tree 2 files changed +23
-23
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ enableLogging () {
4+ echo " SQL:"
5+ echo " logging:"
6+ echo " level:"
7+ echo " org: "
8+ echo " springframework: "
9+ echo " test: "
10+ echo " context:"
11+ echo " jdbc: DEBUG"
12+ echo " jdbc:"
13+ echo " datasource:"
14+ echo " init: DEBUG"
15+ echo " Autoconfig:"
16+ echo " logging.level.org.springframework=DEBUG"
17+ echo " logging.level.com.myapp=DEBUG"
18+ }
19+
20+ showProperties () {
21+ selectItem " find ./src -type f -name 'application*.*'" " awk '{print \$ 1}'"
22+ if [[ $fname == " " ]]; then return 0; fi
23+ vim " $fname "
24+ }
25+
326mvnCleanEclipse (){
427 mvn clean:clean
528 mvn eclipse:clean
Original file line number Diff line number Diff line change @@ -8,29 +8,6 @@ script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
88source " $script_dir /../shellmenu.sh"
99source " $script_dir /ezk-maven-functions.sh"
1010
11- enableLogging () {
12- echo " SQL:"
13- echo " logging:"
14- echo " level:"
15- echo " org: "
16- echo " springframework: "
17- echo " test: "
18- echo " context:"
19- echo " jdbc: DEBUG"
20- echo " jdbc:"
21- echo " datasource:"
22- echo " init: DEBUG"
23- echo " Autoconfig:"
24- echo " logging.level.org.springframework=DEBUG"
25- echo " logging.level.com.myapp=DEBUG"
26- }
27-
28- showProperties () {
29- selectItem " find ./src -type f -name 'application*.*'" " awk '{print \$ 1}'"
30- if [[ $fname == " " ]]; then return 0; fi
31- vim " $fname "
32- }
33-
3411menuInit " Super MAVEN Home"
3512 submenuHead " Maven:"
3613 menuItemClm a " Clean all eclipse" " mvnCleanEclipse" b " Maven analyze dependencies" " mvn dependency:analyze"
You can’t perform that action at this time.
0 commit comments