Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 1684cad

Browse files
committed
build(gradle): use public plugin version instead of the one from the private repository
1 parent 14ae3f8 commit 1684cad

File tree

9 files changed

+10
-128
lines changed

9 files changed

+10
-128
lines changed

‎example-projects/advanced-setup/gradle/app/build.gradle.kts

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,21 @@
11
plugins {
22
id("java-library")
33
id("org.jetbrains.kotlin.jvm") version "1.7.20"
4-
id("com.code-intelligence.cifuzz") version "1.17.0"
4+
id("com.code-intelligence.cifuzz") version "1.23.2"
55
}
66

77
repositories {
8-
maven {
9-
name = "CodeIntelligenceRepository"
10-
url = uri("https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven")
11-
credentials {
12-
username = extra["CodeIntelligenceRepositoryUsername"].toString()
13-
password = extra["CodeIntelligenceRepositoryPassword"].toString()
14-
}
15-
content {
16-
includeGroupByRegex("com\\.code-intelligence.*")
17-
}
18-
}
198
mavenCentral()
209
}
2110

2211
cifuzz {
2312
mainSourceSet.set(sourceSets.create("more"))
2413
}
2514

15+
dependencies {
16+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1")
17+
}
18+
2619
sourceSets {
2720
test {
2821
java {
Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,2 @@
1-
pluginManagement {
2-
repositories {
3-
maven {
4-
name = "CodeIntelligenceRepository"
5-
url = uri("https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven")
6-
credentials {
7-
username = extra["CodeIntelligenceRepositoryUsername"].toString()
8-
password = extra["CodeIntelligenceRepositoryPassword"].toString()
9-
}
10-
content {
11-
includeGroupByRegex("com\\.code-intelligence.*")
12-
}
13-
}
14-
gradlePluginPortal()
15-
}
16-
}
17-
181
include("app")
192
include("testsuite")

‎example-projects/advanced-setup/gradle/testsuite/build.gradle.kts

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,10 @@
11
plugins {
22
id("org.jetbrains.kotlin.jvm") version "1.7.20"
33
id("java-library")
4-
id("com.code-intelligence.cifuzz") version "1.17.0"
4+
id("com.code-intelligence.cifuzz") version "1.23.2"
55
}
66

77
repositories {
8-
maven {
9-
name = "CodeIntelligenceRepository"
10-
url = uri("https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven")
11-
credentials {
12-
username = extra["CodeIntelligenceRepositoryUsername"].toString()
13-
password = extra["CodeIntelligenceRepositoryPassword"].toString()
14-
}
15-
content {
16-
includeGroupByRegex("com\\.code-intelligence.*")
17-
}
18-
}
198
mavenCentral()
209
}
2110

‎example-projects/simple-setup/gradle-junit-4-and-5/build.gradle

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
11
plugins {
22
id 'java'
3-
id "com.code-intelligence.cifuzz" version "1.17.0"
3+
id "com.code-intelligence.cifuzz" version "1.23.2"
44

55
}
66

77
repositories {
8-
maven {
9-
name "CodeIntelligenceRepository"
10-
url "https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven"
11-
credentials {
12-
username CodeIntelligenceRepositoryUsername
13-
password CodeIntelligenceRepositoryPassword
14-
}
15-
content {
16-
includeGroupByRegex("com\\.code-intelligence.*")
17-
}
18-
}
198
mavenCentral()
209
}
2110

2211
dependencies {
2312
testImplementation("junit:junit:4.13.2")
13+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.1")
2414
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") {
2515
because 'allows JUnit 3 and JUnit 4 tests to run'
2616
}

‎example-projects/simple-setup/gradle-junit-4-and-5/settings.gradle

Lines changed: 0 additions & 16 deletions
This file was deleted.

‎example-projects/simple-setup/gradle-kotlin/build.gradle.kts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,10 @@
11
plugins {
22
application
33
id("org.jetbrains.kotlin.jvm") version "1.7.20"
4-
id("com.code-intelligence.cifuzz") version "1.17.0"
4+
id("com.code-intelligence.cifuzz") version "1.23.2"
55
}
66

77
repositories {
8-
// Configure access to CI repository
9-
maven {
10-
name = "CodeIntelligenceRepository"
11-
url = uri("https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven")
12-
credentials {
13-
username = extra["CodeIntelligenceRepositoryUsername"].toString()
14-
password = extra["CodeIntelligenceRepositoryPassword"].toString()
15-
}
16-
content {
17-
includeGroupByRegex("com\\.code-intelligence.*")
18-
}
19-
}
208
mavenCentral()
219
}
2210

‎example-projects/simple-setup/gradle-kotlin/settings.gradle.kts

Lines changed: 0 additions & 17 deletions
This file was deleted.

‎example-projects/simple-setup/gradle/build.gradle

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
11
plugins {
22
id 'application'
3-
id "com.code-intelligence.cifuzz" version "1.17.0"
3+
id "com.code-intelligence.cifuzz" version "1.23.2"
44
}
55

66
repositories {
7-
// Configure access to CI repository
8-
maven {
9-
name "CodeIntelligenceRepository"
10-
url "https://gitlab.code-intelligence.com/api/v4/projects/89/packages/maven"
11-
credentials {
12-
username CodeIntelligenceRepositoryUsername
13-
password CodeIntelligenceRepositoryPassword
14-
}
15-
content {
16-
includeGroupByRegex("com\\.code-intelligence.*")
17-
}
18-
}
197
mavenCentral()
208
}
219

‎example-projects/simple-setup/gradle/settings.gradle

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /