Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 733ab4b

Browse files
committedJun 7, 2023
feat: extend pom-scijava parent POM
This inherits the SciJava Bill of Materials; see https://github.com/scijava/pom-scijava#readme for details.
1 parent 4300586 commit 733ab4b

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎packages/core/java/pom.xml

+29
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44

5+
<parent>
6+
<groupId>org.scijava</groupId>
7+
<artifactId>pom-scijava</artifactId>
8+
<version>35.1.1</version>
9+
</parent>
10+
511
<groupId>org.itk.wasm</groupId>
612
<artifactId>itk-wasm</artifactId>
713
<version>0.1.0</version>
@@ -36,13 +42,32 @@
3642
</contributor>
3743
</contributors>
3844

45+
<mailingLists>
46+
<mailingList>
47+
<name>ITK Forum</name>
48+
<archive>https://discourse.itk.org/</archive>
49+
</mailingList>
50+
</mailingLists>
51+
3952
<scm>
4053
<connection>scm:https://github.com/InsightSoftwareConsortium/itk-wasm</connection>
4154
<developerConnection>scm:git@github.com:InsightSoftwareConsortium/itk-wasm</developerConnection>
4255
<url>https://github.com/InsightSoftwareConsortium/itk-wasm</url>
4356
</scm>
57+
<issueManagement>
58+
<system>GitHub Issues</system>
59+
<url>https://github.com/InsightSoftwareConsortium/itk-wasm/issues</url>
60+
</issueManagement>
61+
<ciManagement>
62+
<system>GitHub Actions</system>
63+
<url>https://github.com/InsightSoftwareConsortium/itk-wasm/actions</url>
64+
</ciManagement>
4465

4566
<properties>
67+
<license.licenseName>apache_v2</license.licenseName>
68+
<license.copyrightOwners>ITK developers.</license.copyrightOwners>
69+
<license.projectName>Java bindings for itk-wasm.</license.projectName>
70+
4671
<wasmtime-java.version>0.14.0</wasmtime-java.version>
4772
</properties>
4873

@@ -52,5 +77,9 @@
5277
<artifactId>wasmtime-java</artifactId>
5378
<version>${wasmtime-java.version}</version>
5479
</dependency>
80+
<dependency>
81+
<groupId>net.imglib2</groupId>
82+
<artifactId>imglib2</artifactId>
83+
</dependency>
5584
</dependencies>
5685
</project>

0 commit comments

Comments
 (0)
Please sign in to comment.