forked from springfox/springfox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of git://github.com/springfox/springfox into fe…
…ature/webflux Conflicts: .version gradle/dependencies.gradle gradle/wrapper/gradle-wrapper.properties springfox-spi/src/main/java/springfox/documentation/spi/service/contexts/Defaults.java springfox-spi/src/main/java/springfox/documentation/spi/service/contexts/Orderings.java springfox-spring-web/src/main/java/springfox/documentation/spring/web/plugins/CombinedRequestHandler.java springfox-spring-web/src/test/groovy/springfox/documentation/spring/web/scanners/ApiListingScannerSpec.groovy springfox-spring-webmvc/src/test/groovy/springfox/documentation/spring/web/plugins/DefaultRequestHandlerCombinerSpec.groovy springfox-spring-webmvc/src/test/groovy/springfox/documentation/spring/web/plugins/PathAndParametersEquivalenceSpec.groovy springfox-spring-webmvc/src/test/groovy/springfox/documentation/spring/web/readers/ApiModelReaderSpec.groovy springfox-swagger-ui/build.gradle springfox-swagger2/build.gradle springfox-swagger2/src/main/java/springfox/documentation/swagger2/annotations/EnableSwagger2WebMvc.java springfox-swagger2/src/main/java/springfox/documentation/swagger2/configuration/Swagger2DocumentationWebMvcConfiguration.java swagger-contract-tests/src/test/groovy/springfox/test/contract/swaggertests/Swagger2TestConfig.groovy
- Loading branch information
Showing
581 changed files
with
38,544 additions
and
23,362 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
working_directory: ~/code | ||
docker: | ||
- image: circleci/openjdk:8-jdk-node-browsers | ||
environment: | ||
JVM_OPTIONS: -Xmx1024M -XX:MaxPermSize=512M -XX:ReservedCodeCacheSize=512M | ||
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-Xmx3840m -XX:+HeapDumpOnOutOfMemoryError"' | ||
steps: | ||
- checkout | ||
- restore_cache: | ||
key: jars-{{ checksum "build.gradle" }}-{{ checksum "gradle/dependencies.gradle" }} | ||
# - run: | ||
# name: Chmod permissions #if permission for Gradlew Dependencies fail, use this. | ||
# command: sudo chmod +x ./gradlew | ||
- run: | ||
name: Download Dependencies | ||
command: ./gradlew dependencies | ||
- run: | ||
name: pre-dependencies | ||
command: npm install codecov | ||
- save_cache: | ||
paths: | ||
- ~/node_modules | ||
- ~/.m2 | ||
key: jars-{{ checksum "build.gradle" }}-{{ checksum "gradle/dependencies.gradle" }} | ||
- run: | ||
name: Run Tests | ||
command: ./gradlew clean check codeCoverageReport --no-daemon | ||
no_output_timeout: 900s | ||
environment: | ||
_JAVA_OPTIONS: -Xmx1024M -XX:ReservedCodeCacheSize=512M | ||
- run: | ||
name: Post test | ||
command: ./node_modules/.bin/codecov | ||
- run: | ||
name: Save test results | ||
command: | | ||
mkdir -p ~/junit/ | ||
mkdir -p ~/reports/ | ||
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} ~/junit/ \; | ||
cp -R swagger-contract-tests/build/reports/tests ~/reports | ||
when: always | ||
- store_test_results: | ||
path: ~/junit | ||
- store_test_results: | ||
path: ~/reports | ||
- store_artifacts: | ||
path: ~/junit | ||
- store_artifacts: | ||
path: ~/reports | ||
- deploy: | ||
command: | | ||
if [ "${CIRCLE_BRANCH}" == "master" ]; then | ||
./gradlew publishSnapshot -x check | ||
./gradlew publishDocs -i | ||
fi | ||
notify: | ||
webhooks: | ||
- url: https://webhooks.gitter.im/e/b30a7db820817acfc6d8 |
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 |
---|---|---|
|
@@ -16,3 +16,5 @@ generated-src | |
.env | ||
out/ | ||
*.hprof | ||
node_modules/ | ||
package-lock.json |
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 +1 @@ | ||
1.7 | ||
1.8 |
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 +1 @@ | ||
2.9.0-SNAPSHOT | ||
3.0.0-SNAPSHOT |
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
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
Oops, something went wrong.