Skip to content

Commit 20986d0

Browse files
committed
3.3.31
1 parent 0883071 commit 20986d0

File tree

8 files changed

+70
-9
lines changed

8 files changed

+70
-9
lines changed

.idea/.name

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,45 @@
1+
import magik.createGithubPublication
2+
import magik.github
3+
import org.jetbrains.kotlin.gradle.dsl.KotlinCompile
4+
15
plugins {
2-
fun kx(vararg p: Pair<String, String>) = p.forEach { id("io.github.kotlin-graphics.${it.first}") version it.second }
3-
kx("base" to "0.0.9",
4-
"publish" to "0.0.5",
5-
"utils" to "0.0.5")
6-
}
6+
kotlin("jvm") version embeddedKotlinVersion
7+
id("elect86.magik") version "0.3.1"
8+
`maven-publish`
9+
}
10+
11+
repositories { mavenCentral() }
12+
13+
dependencies {
14+
testImplementation("io.kotest:kotest-runner-junit5:5.4.1")
15+
testImplementation("io.kotest:kotest-assertions-core:5.4.1")
16+
}
17+
18+
kotlin.jvmToolchain {
19+
this as JavaToolchainSpec
20+
languageVersion.set(JavaLanguageVersion.of(8))
21+
}
22+
23+
tasks {
24+
withType<KotlinCompile<*>>().all {
25+
kotlinOptions {
26+
freeCompilerArgs += listOf("-opt-in=kotlin.RequiresOptIn")
27+
}
28+
}
29+
}
30+
31+
publishing {
32+
publications {
33+
createGithubPublication {
34+
from(components["java"])
35+
suppressAllPomMetadataWarnings()
36+
}
37+
}
38+
repositories {
39+
github {
40+
domain = "kotlin-graphics/mary"
41+
}
42+
}
43+
}
44+
45+
java { withSourcesJar() }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
7-
distributionSha256Sum=de8f52ad49bdc759164f72439a3bf56ddb1589c4cde802d3cec7d6ad0e0ee410
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
7+
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pluginManagement {
1010

1111
gradle.rootProject {
1212
group = "kotlin.graphics"
13-
version = "3.3.3"
13+
version = "3.3.31"
1414
}
1515

1616
//includeBuild("../magik")
File renamed without changes.

0 commit comments

Comments
 (0)