Skip to content

Commit abbf517

Browse files
Gradle: Correctly add autofab dependency and bump version to 1.0.0-beta-2
1 parent c4fb8eb commit abbf517

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ val lwjglArtifacts = listOf(
4040
)
4141

4242
dependencies {
43+
// IMPORTANT: When adding dependencies that are not managed by the scijava parent POM,
44+
// add the name of the dependency to the `versionedArtifacts` below, otherwise the Maven
45+
// POM will be generated incorrectly.
4346
val scijavaParentPomVersion = project.properties["scijavaParentPOMVersion"]
4447
val lwjglVersion = project.properties["lwjglVersion"]
4548

@@ -305,7 +308,8 @@ tasks {
305308
"jackson-dataformat-yaml",
306309
"kryo",
307310
"bigvolumeviewer",
308-
"snappy-java"
311+
"snappy-java",
312+
"autofab"
309313
) + lwjglArtifacts
310314

311315
val toSkip = listOf("pom-scijava")

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ dokkaVersion=1.9.20
55
scijavaParentPOMVersion=39.0.0
66
lwjglVersion=3.3.3
77
jvmTarget=21
8-
version=0.12.0
8+
version=1.0.0-beta-2
99

0 commit comments

Comments
 (0)