Skip to content

Commit

Permalink
Updated the converage numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
dilipkrish committed Feb 10, 2016
1 parent b490805 commit 62c3b6a
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 14 deletions.
11 changes: 11 additions & 0 deletions springfox-bean-validators/build.gradle
Expand Up @@ -12,6 +12,17 @@ artifacts {
testArtifacts testJar
}

ext {
limits = [
'instruction': 100,
'branch' : 100,
'line' : 100,
'complexity' : 100,
'method' : 100,
'class' : 100
]
}

dependencies {
compile libs.core
compile libs.spring
Expand Down
11 changes: 11 additions & 0 deletions springfox-core/build.gradle
Expand Up @@ -11,6 +11,17 @@ artifacts {
testArtifacts testJar
}

ext {
limits = [
'instruction': 97,
'branch' : 89,
'line' : 96,
'complexity' : 93,
'method' : 96,
'class' : 98.5
]
}

dependencies {
compile libs.core
compile libs.spring
Expand Down
11 changes: 11 additions & 0 deletions springfox-schema/build.gradle
Expand Up @@ -11,6 +11,17 @@ artifacts {
testArtifacts testJar
}

ext {
limits = [
'instruction': 98,
'branch' : 89,
'line' : 96,
'complexity' : 91,
'method' : 97,
'class' : 100
]
}

dependencies {
compile project(':springfox-core')
compile project(':springfox-spi')
Expand Down
11 changes: 11 additions & 0 deletions springfox-spring-web/build.gradle
Expand Up @@ -2,6 +2,17 @@ configurations {
testArtifacts.extendsFrom testRuntime
}

ext {
limits = [
'instruction': 97,
'branch' : 91,
'line' : 96.5,
'complexity' : 92,
'method' : 96,
'class' : 100
]
}

dependencies {
compile libs.core
compile libs.spring
Expand Down
6 changes: 3 additions & 3 deletions springfox-staticdocs/build.gradle
Expand Up @@ -4,11 +4,11 @@ configurations {

ext {
limits = [
'instruction': 68,
'instruction': 82,
'branch' : 40,
'line' : 71,
'line' : 95,
'complexity' : 75,
'method' : 75,
'method' : 93,
'class' : 100
]
}
Expand Down
9 changes: 4 additions & 5 deletions springfox-swagger-common/build.gradle
Expand Up @@ -10,15 +10,14 @@ artifacts {
testArtifacts testJar
}

//TODO: Improve branch and complexity coverage
ext {
limits = [
'instruction': 96,
'branch' : 82,
'line' : 96,
'complexity' : 84,
'branch' : 84,
'line' : 96.5,
'complexity' : 87,
'method' : 95,
'class' : 97.5
'class' : 100
]
}

Expand Down
10 changes: 10 additions & 0 deletions springfox-swagger1/build.gradle
Expand Up @@ -12,6 +12,16 @@ artifacts {
testArtifacts testJar
}

ext {
limits = [
'instruction': 97,
'branch' : 96,
'line' : 97,
'complexity' : 95,
'method' : 95,
'class' : 97.5
]
}

dependencies {
compile libs.swagger2Core
Expand Down
12 changes: 6 additions & 6 deletions springfox-swagger2/build.gradle
Expand Up @@ -4,12 +4,12 @@ configurations {
}
ext {
limits = [
'instruction': 94,
'branch' : 84,
'line' : 95,
'complexity' : 84,
'method' : 94,
'class' : 94
'instruction': 95,
'branch' : 89,
'line' : 95.5,
'complexity' : 90,
'method' : 95,
'class' : 100
]
}

Expand Down

0 comments on commit 62c3b6a

Please sign in to comment.