We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed8e288 commit 8233e73Copy full SHA for 8233e73
build.gradle.kts
@@ -7,7 +7,7 @@ plugins {
7
}
8
9
group = "com.github.breandan"
10
-version = "0.1.1"
+version = "0.1.2"
11
12
repositories {
13
mavenCentral()
@@ -120,10 +120,18 @@ tasks {
120
dependsOn(jupyterInstall)
121
commandLine("jupyter", "notebook", "--notebook-dir=notebooks")
122
123
+
124
+ val sourcesJar by registering(org.gradle.jvm.tasks.Jar::class) {
125
+ classifier = "sources"
126
+ from(sourceSets.main.get().allSource)
127
+ }
128
129
130
publishing {
131
publications.create<MavenPublication>("default") {
132
+ from(components["java"])
133
+ artifact(tasks["sourcesJar"])
134
135
pom {
136
url.set("https://github.com/breandan/kaliningraph")
137
licenses {
0 commit comments