Skip to content

Commit 4300586

Browse files
committed
feat: add initial Maven POM
1 parent 6bc46c8 commit 4300586

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

packages/core/java/pom.xml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>org.itk.wasm</groupId>
6+
<artifactId>itk-wasm</artifactId>
7+
<version>0.1.0</version>
8+
9+
<name>itk-wasm for Java</name>
10+
<description>Java interface to itk-wasm WebAssembly modules.</description>
11+
<url>https://github.com/InsightSoftwareConsortium/itk-wasm</url>
12+
<inceptionYear>2023</inceptionYear>
13+
<organization>
14+
<name>ITK</name>
15+
<url>https://itk.org/</url>
16+
</organization>
17+
<licenses>
18+
<license>
19+
<name>The Apache License, Version 2.0</name>
20+
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
21+
</license>
22+
</licenses>
23+
24+
<developers>
25+
<developer>
26+
<name>Matt McCormick</name>
27+
<url>https://github.com/thewtex</url>
28+
<id>thewtex</id>
29+
</developer>
30+
</developers>
31+
<contributors>
32+
<contributor>
33+
<name>Curtis Rueden</name>
34+
<url>https://github.com/ctrueden</url>
35+
<properties><id>ctrueden</id></properties>
36+
</contributor>
37+
</contributors>
38+
39+
<scm>
40+
<connection>scm:https://github.com/InsightSoftwareConsortium/itk-wasm</connection>
41+
<developerConnection>scm:git@github.com:InsightSoftwareConsortium/itk-wasm</developerConnection>
42+
<url>https://github.com/InsightSoftwareConsortium/itk-wasm</url>
43+
</scm>
44+
45+
<properties>
46+
<wasmtime-java.version>0.14.0</wasmtime-java.version>
47+
</properties>
48+
49+
<dependencies>
50+
<dependency>
51+
<groupId>io.github.kawamuray.wasmtime</groupId>
52+
<artifactId>wasmtime-java</artifactId>
53+
<version>${wasmtime-java.version}</version>
54+
</dependency>
55+
</dependencies>
56+
</project>

0 commit comments

Comments
 (0)