Skip to content

Commit 7f04a47

Browse files
QilongZhangstraybirdzls
authored andcommitted
Refactor Starters (sofastack#453)
1 parent 3290a75 commit 7f04a47

File tree

956 files changed

+28861
-5603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

956 files changed

+28861
-5603
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ logs
2424
# gradle related ignore in sub directories
2525
.gradle
2626
build
27-
out
27+
out

.travis.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,19 @@ sudo: false
44
jdk:
55
- oraclejdk8
66

7+
before_install:
8+
- echo "Install Zookeeper 3.4.11"
9+
&& wget http://archive.apache.org/dist/zookeeper/zookeeper-3.4.11/zookeeper-3.4.11.tar.gz
10+
&& tar -zxf zookeeper-3.4.11.tar.gz
11+
&& mv zookeeper-3.4.11/conf/zoo_sample.cfg zookeeper-3.4.11/conf/zoo.cfg
12+
&& /bin/bash zookeeper-3.4.11/bin/zkServer.sh start
13+
714
install:
815
- mvn clean install -DskipTests -B -V
916
- mvn test
1017

1118
script:
12-
- sh ./check_format.sh
19+
- sh ./tools/check_format.sh
1320

1421
after_success:
1522
- bash <(curl -s https://codecov.io/bash)

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ the ability to merge pull requests.
1616
### Code Conventions
1717
None of these is essential for a pull request, but they will all help.
1818

19-
1. we provided a [code formatter file](./Formatter.xml), it will formatting
19+
1. we provided a [code formatter file](tools/Formatter.xml), it will formatting
2020
automatically your project when during process of building.
2121

2222
2. Make sure all new `.java` files to have a simple Javadoc class comment

appveyor.yml

-30
This file was deleted.

healthcheck-sofa-boot-starter/src/main/java/com/alipay/sofa/healthcheck/configuration/HealthCheckConstants.java

-96
This file was deleted.

healthcheck-sofa-boot-starter/src/main/java/com/alipay/sofa/healthcheck/service/SofaBootReadinessCheckEndpoint.java

-91
This file was deleted.

healthcheck-sofa-boot-starter/src/main/resources/META-INF/spring.factories

-5
This file was deleted.

healthcheck-sofa-boot-starter/src/test/java/com/alipay/sofa/healthcheck/base/BaseHealthCheckTest.java

-47
This file was deleted.

healthcheck-sofa-boot-starter/src/test/java/com/alipay/sofa/healthcheck/readiness/HealthCheckConfigurationTest.java

-68
This file was deleted.

0 commit comments

Comments
 (0)