File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11
2+ ext. moduleName = ' com.github.kotlin_graphics.glm'
3+
24buildscript {
35
4- ext. kotlinVersion = ' 1.3.0 '
6+ ext. kotlinVersion = ' 1.3.10 '
57 ext. kotlintestVersion = " 3.1.10"
68
79 repositories {
@@ -44,4 +46,11 @@ subprojects {
4446 archives sourcesJar
4547 archives javadocJar
4648 }
49+
50+ jar {
51+ inputs. property(" moduleName" , moduleName)
52+ manifest {
53+ attributes(' Automatic-Module-Name' : moduleName)
54+ }
55+ }
4756}
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ dependencies {
44
55 implementation " org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion "
66
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 '
99
1010 testImplementation project(" :glm-test" )
1111
Original file line number Diff line number Diff line change @@ -147,5 +147,5 @@ val GLM_VERSION_MAJOR = 0
147147val GLM_VERSION_MINOR = 9
148148val GLM_VERSION_PATCH = 9
149149val GLM_VERSION_REVISION = 0
150- val GLM_VERSION_BUILD = 10
150+ val GLM_VERSION_BUILD = 11
151151val 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