From 51e2af148e402f30cf3f27373732e4bd3fa77c58 Mon Sep 17 00:00:00 2001 From: ma wei Date: Wed, 13 May 2015 10:22:36 +0800 Subject: [PATCH] modify code format in README.md Former-commit-id: 5aabb0ec41022da8a2e0c83fc0317e7cbcc4cb95 --- dependency-check-gradle/README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/dependency-check-gradle/README.md b/dependency-check-gradle/README.md index bb3e86687..509fd0574 100644 --- a/dependency-check-gradle/README.md +++ b/dependency-check-gradle/README.md @@ -17,7 +17,7 @@ Please refer to either one of the solution #### Solution 1,Bintray -` +``` apply plugin: "dependency-check" buildscript { @@ -33,7 +33,7 @@ buildscript { ) } } -` +``` #### Solution 2,Gradle Plugin Portal @@ -41,7 +41,7 @@ buildscript { **Build script snippet for new, incubating, plugin mechanism introduced in Gradle 2.1:** -` +``` // buildscript { // ... // } @@ -51,11 +51,11 @@ plugins { } // apply plugin: ... -` +``` **Build script snippet for use in all Gradle versions:** -` +``` buildscript { repositories { maven { @@ -68,7 +68,7 @@ buildscript { } apply plugin: "dependency.check" -` +``` #### Solution 3,Maven Central @@ -78,8 +78,8 @@ working in progress Once gradle plugin applied, run following gradle task to check the dependencies: -` +``` gradle dependencyCheck -` +``` The reports will be generated automatically under `./reports` folder.