File tree 3 files changed +13
-4
lines changed
3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
2
+ ext. moduleName = ' com.github.kotlin_graphics.glm'
3
+
2
4
buildscript {
3
5
4
- ext. kotlinVersion = ' 1.3.0 '
6
+ ext. kotlinVersion = ' 1.3.10 '
5
7
ext. kotlintestVersion = " 3.1.10"
6
8
7
9
repositories {
@@ -44,4 +46,11 @@ subprojects {
44
46
archives sourcesJar
45
47
archives javadocJar
46
48
}
49
+
50
+ jar {
51
+ inputs. property(" moduleName" , moduleName)
52
+ manifest {
53
+ attributes(' Automatic-Module-Name' : moduleName)
54
+ }
55
+ }
47
56
}
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ dependencies {
4
4
5
5
implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion "
6
6
7
- implementation ' com.github.kotlin-graphics:kotlin-unsigned:e94fc7976f3af402ff5db93b8cddb32f25145d18 '
8
- implementation ' com.github.kotlin-graphics:kool:ac6df0dc1621e5d6d54da109487b364743484aa5 '
7
+ implementation ' com.github.kotlin-graphics:kotlin-unsigned:4c5a91c407fbcc7761f93336967820b08021aa60 '
8
+ implementation ' com.github.kotlin-graphics:kool:1c5ee046b067d6e1b01f3797bf44438d72eb91f8 '
9
9
10
10
testImplementation project(" :glm-test" )
11
11
Original file line number Diff line number Diff line change @@ -147,5 +147,5 @@ val GLM_VERSION_MAJOR = 0
147
147
val GLM_VERSION_MINOR = 9
148
148
val GLM_VERSION_PATCH = 9
149
149
val GLM_VERSION_REVISION = 0
150
- val GLM_VERSION_BUILD = 10
150
+ val GLM_VERSION_BUILD = 11
151
151
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION + GLM_VERSION_BUILD / 10f
You can’t perform that action at this time.
0 commit comments