diff options
author | Kengo TODA <skypencil@gmail.com> | 2021-09-30 19:07:41 +0800 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-08 20:03:10 +0000 |
commit | ac63a87fff684c5c4eb3b0a2562526e2643378be (patch) | |
tree | ff609812b352f1ab823ffae0881ee0acc21f38ca /server | |
parent | d0b6b0f341c297ad06a96508d13597b00dd214a6 (diff) | |
download | sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.tar.gz sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.zip |
SONAR-15470 Do not declare Gradle build dependencies using compile and runtime configurations
Diffstat (limited to 'server')
-rw-r--r-- | server/sonar-auth-bitbucket/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-auth-common/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-auth-github/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-auth-gitlab/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-auth-ldap/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-auth-saml/build.gradle | 2 | ||||
-rw-r--r-- | server/sonar-ce-common/build.gradle | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/server/sonar-auth-bitbucket/build.gradle b/server/sonar-auth-bitbucket/build.gradle index 2e5f80aa76e..80f71c55fa7 100644 --- a/server/sonar-auth-bitbucket/build.gradle +++ b/server/sonar-auth-bitbucket/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: Bitbucket' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { diff --git a/server/sonar-auth-common/build.gradle b/server/sonar-auth-common/build.gradle index 8adf3d9591e..7c598342345 100644 --- a/server/sonar-auth-common/build.gradle +++ b/server/sonar-auth-common/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: Common' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { diff --git a/server/sonar-auth-github/build.gradle b/server/sonar-auth-github/build.gradle index b8911ac7943..9dbceacc719 100644 --- a/server/sonar-auth-github/build.gradle +++ b/server/sonar-auth-github/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: GitHub' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { diff --git a/server/sonar-auth-gitlab/build.gradle b/server/sonar-auth-gitlab/build.gradle index f4c43ca8769..7f679b9506a 100644 --- a/server/sonar-auth-gitlab/build.gradle +++ b/server/sonar-auth-gitlab/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: GitLab' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { diff --git a/server/sonar-auth-ldap/build.gradle b/server/sonar-auth-ldap/build.gradle index 622b983188a..8af87f30bcb 100644 --- a/server/sonar-auth-ldap/build.gradle +++ b/server/sonar-auth-ldap/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: LDAP' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { diff --git a/server/sonar-auth-saml/build.gradle b/server/sonar-auth-saml/build.gradle index dd9d2341cb1..168572a6620 100644 --- a/server/sonar-auth-saml/build.gradle +++ b/server/sonar-auth-saml/build.gradle @@ -1,7 +1,7 @@ description = 'SonarQube :: Authentication :: SAML' configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } ext { diff --git a/server/sonar-ce-common/build.gradle b/server/sonar-ce-common/build.gradle index 800286bde41..02edbe428bc 100644 --- a/server/sonar-ce-common/build.gradle +++ b/server/sonar-ce-common/build.gradle @@ -25,7 +25,7 @@ processResources { } configurations { - testCompile.extendsFrom compileOnly + testImplementation.extendsFrom compileOnly } dependencies { |