-
Notifications
You must be signed in to change notification settings - Fork 40
Create and publish snapshot version of data loader core #2736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 10 commits
2ba7e9e
048f1d5
5aafe77
51a717b
56d765e
adf71f6
93b3381
f0f8c20
2b9088e
5583eab
e8e32c3
458ebc8
7d42cbe
08bf8e4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -2,6 +2,9 @@ plugins { | |||||||||
| id 'net.ltgt.errorprone' version "${errorpronePluginVersion}" | ||||||||||
| id 'com.github.johnrengelman.shadow' version "${shadowPluginVersion}" | ||||||||||
| id 'com.github.spotbugs' version "${spotbugsPluginVersion}" | ||||||||||
| id 'maven-publish' | ||||||||||
| id 'signing' | ||||||||||
| id 'base' | ||||||||||
| } | ||||||||||
|
|
||||||||||
| archivesBaseName = "scalardb-data-loader-core" | ||||||||||
|
|
@@ -41,3 +44,67 @@ spotbugsTest.reports { | |||||||||
| html.enabled = true | ||||||||||
| } | ||||||||||
| spotbugsTest.excludeFilter = file("${project.rootDir}/gradle/spotbugs-exclude.xml") | ||||||||||
|
|
||||||||||
| if (project.gradle.startParameter.taskNames.any { it.endsWith('publish') } || | ||||||||||
| project.gradle.startParameter.taskNames.any { it.endsWith('publishToMavenLocal') }) { | ||||||||||
|
Comment on lines
+48
to
+49
|
||||||||||
| if (project.gradle.startParameter.taskNames.any { it.endsWith('publish') } || | |
| project.gradle.startParameter.taskNames.any { it.endsWith('publishToMavenLocal') }) { | |
| if (project.gradle.taskGraph.hasTask(":publish") || | |
| project.gradle.taskGraph.hasTask(":publishToMavenLocal")) { |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe exporting is necessary? (CC: @ypeckstadt, @josh-wong)
| description = 'A tool for importing data to and from ScalarDB' | |
| description = 'A tool for exporting data from and importing data into ScalarDB' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@brfrn169 san,
I have updated the description.
Thank you.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please make the same change for the follows:
scalardb/.github/workflows/upload-artifacts.yaml
Line 60 in 5583eab