Skip to content

Commit cd4cce6

Browse files
committed
Remove publish core snapshots
1 parent 90b2af8 commit cd4cce6

File tree

3 files changed

+0
-28
lines changed

3 files changed

+0
-28
lines changed

.github/workflows/springwolf-core.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,5 @@ jobs:
2727
- name: Build with Gradle
2828
run: ./gradlew -p springwolf-core build
2929

30-
- name: Publish snapshot
31-
run: ./gradlew -p springwolf-core artifactoryPublish -Dbintray.user=$BINTRAY_USER -Dbintray.key=$BINTRAY_KEY -Dsnapshot=true -Dbuild.number=$GITHUB_RUN_NUMBER
32-
env:
33-
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
34-
BINTRAY_KEY: ${{ secrets.BINTRAY_KEY }}
35-
3630
- name: Run integration tests
3731
run: ./gradlew -p springwolf-example test

springwolf-core/build.gradle

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ plugins {
44

55
id 'maven-publish'
66
id 'com.jfrog.bintray' version '1.8.4'
7-
id 'com.jfrog.artifactory' version '4.13.0'
87

98
id 'org.springframework.boot' version '2.1.1.RELEASE'
109
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
@@ -119,23 +118,3 @@ bintray {
119118
}
120119
}
121120
}
122-
123-
artifactory {
124-
contextUrl = 'http://oss.jfrog.org'
125-
publish {
126-
repository {
127-
repoKey = 'oss-snapshot-local'
128-
username = System.getProperty('bintray.user')
129-
password = System.getProperty('bintray.key')
130-
}
131-
defaults {
132-
publications('mavenPublication')
133-
publishArtifacts = true
134-
publishPom = true
135-
}
136-
}
137-
resolve {
138-
repoKey = 'jcenter'
139-
}
140-
clientConfig.info.setBuildNumber(System.getProperty('build.number'))
141-
}

springwolf-example/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ version = rootProject.exampleVersion
1313
repositories {
1414
mavenCentral()
1515
jcenter()
16-
maven { url 'https://oss.jfrog.org/artifactory/oss-snapshot-local' }
1716
}
1817

1918
dependencies {

0 commit comments

Comments
 (0)