Skip to content

Commit e148089

Browse files
committed
Remove jcenter and bintray references
1 parent b4b7aaa commit e148089

File tree

5 files changed

+6
-34
lines changed

5 files changed

+6
-34
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@
66
build
77

88
.DS_Store
9-
10-
.bintray.config

build.gradle

+3-29
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
plugins {
2-
id "com.jfrog.bintray" version "1.8.4" apply false
3-
}
4-
51
group 'com.logcapture'
62
version '1.2.1'
73
description = 'A testing library for assert logging messages.'
84

95
repositories {
10-
jcenter()
6+
mavenCentral()
117
}
128

139
subprojects {
@@ -18,7 +14,7 @@ subprojects {
1814
apply plugin: "jacoco"
1915

2016
repositories {
21-
jcenter()
17+
mavenCentral()
2218
}
2319

2420
test {
@@ -83,32 +79,10 @@ subprojects {
8379
}
8480
}
8581
}
86-
87-
apply plugin: 'com.jfrog.bintray'
88-
89-
bintray {
90-
// dryRun = true
91-
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
92-
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
93-
94-
publications = ['MyPublication']
95-
pkg {
96-
repo = 'maven'
97-
name = project.name
98-
userOrg = 'jspcore'
99-
licenses = ['MIT']
100-
vcsUrl = 'https://github.com/jsalinaspolo/logcapture.git'
101-
version {
102-
name = "1.2.1"
103-
vcsTag = "1.2.1"
104-
released = new Date()
105-
}
106-
}
107-
}
10882
}
10983

11084
wrapper {
111-
gradleVersion = '6.7'
85+
gradleVersion = '6.8.3'
11286
distributionType = Wrapper.DistributionType.ALL
11387
}
11488

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

logcapture-kotest/logcapture-kotest.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.jetbrains.kotlin.jvm' version '1.4.21'
2+
id 'org.jetbrains.kotlin.jvm' version '1.4.31'
33
}
44

55
dependencies {

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
include 'logcapture-core',
32
'logcapture-junit4',
43
'logcapture-junit5',
@@ -11,3 +10,4 @@ rootProject.children.each { child ->
1110
child.name = child.name - ~/.*\\//
1211
child.buildFileName = "${child.name}.gradle"
1312
}
13+

0 commit comments

Comments
 (0)