Skip to content

Commit 26ace03

Browse files
committed
Update SciJava CI and Gradle documentation
1 parent 520afc9 commit 26ace03

2 files changed

Lines changed: 7 additions & 6 deletions

File tree

_pages/develop/github-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Deploying your library to a [Maven](/develop/maven) repository makes it availabl
2222
## Requirements
2323

2424
- Host your [open-source](/licensing/open-source) project on [GitHub](/develop/github).
25-
- Contact an ImageJ admin on the [Image.sc Zulip](https://imagesc.zulipchat.com/) or the [Image.sc Forum](http://forum.image.sc/) and request that they add the authentication secrets for deployment to your organization.
25+
- Contact a SciJava admin (@ctrueden, @hinerm, @tpietzsch) on the [Image.sc Zulip](https://imagesc.zulipchat.com/) or the [Image.sc Forum](http://forum.image.sc/) and request that they add the authentication secrets for deployment to your organization.
2626

2727
## Instructions
2828

_pages/develop/gradle.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ If, for some reason, you have a gradle managed project instead of a maven projec
2020
Suppose that you have a gradle project with minimal dependencies and you want to upload the resulting built jar to scijava maven. First you need to host your project on github, and your github organisation needs to be allowed to deploy on scijava maven:
2121

2222
- Host your [open-source](/licensing/open-source) project on [GitHub](/develop/github).
23-
- Contact an ImageJ admin in [Gitter](/discuss/chat#gitter) or [the Image.sc Forum](http://forum.image.sc/) and request that they add the authentication secrets for deployment to your organization.
23+
- Contact a SciJava admin (@ctrueden, @hinerm, @tpietzsch) on the [Image.sc Zulip](https://imagesc.zulipchat.com/) or the [Image.sc Forum](http://forum.image.sc/) and request that they add the authentication secrets for deployment to your organization.
24+
2425

2526
Then you need to amend your build script and add a github workflow, as specified below:
2627

@@ -138,9 +139,9 @@ You will need to change the version number manually, and also run the github pub
138139

139140
If you want to see a project which uses all of this, have a look at [https://github.com/BIOP/qupath-extension-warpy](https://github.com/BIOP/qupath-extension-warpy)
140141

141-
## Consuming ImageJ artifact in a Gradle build.gradle script
142+
## Consuming a SciJava artifact in a Gradle build.gradle script
142143

143-
The ImageJ core artifacts are built with Maven, but can also be consumed in a Gradle build script.
144+
The core artifacts in the SciJava software stack (e.g. [SciJava](/libs/scijava), [ImgLib2](/libs/imglib2), [ImageJ2](/software/imagej2), [SCIFIO](/libs/scifio), [Fiji](/software/fiji)) are built with [Maven](maven), but can also be consumed in a Gradle build script.
144145

145146
Contributed<sup>[1](https://github.com/imagej/tutorials/issues/24)</sup> by {% include person id='reckbo' %}
146147

@@ -158,14 +159,14 @@ buildscript {
158159
apply plugin: "io.spring.dependency-management"
159160
160161
repositories {
161-
jcenter()
162+
mavenCentral()
162163
maven {
163164
url "https://maven.scijava.org/content/groups/public/"
164165
}
165166
}
166167
dependencyManagement {
167168
imports {
168-
mavenBom 'net.imagej:pom-imagej:14.1.0'
169+
mavenBom 'org.scijava:pom-scijava:43.0.0'
169170
}
170171
}
171172

0 commit comments

Comments
 (0)