Skip to content

Commit b63f6aa

Browse files
committed
Add initial pom.xml for scijava-context-test Maven project
1 parent c8d3d24 commit b63f6aa

1 file changed

Lines changed: 51 additions & 0 deletions

File tree

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<parent>
8+
<groupId>org.scijava</groupId>
9+
<artifactId>pom-scijava</artifactId>
10+
<version>43.0.0</version>
11+
</parent>
12+
13+
<groupId>sc.fiji</groupId>
14+
<artifactId>scijava-context-test</artifactId>
15+
<version>1.0-SNAPSHOT</version>
16+
17+
<properties>
18+
<maven.compiler.source>11</maven.compiler.source>
19+
<maven.compiler.target>11</maven.compiler.target>
20+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
22+
<license.licenseName>bsd_2</license.licenseName>
23+
<license.organizationName>SciJava</license.organizationName>
24+
<license.copyrightOwners>SciJava developers</license.copyrightOwners>
25+
</properties>
26+
27+
<repositories>
28+
<repository>
29+
<id>scijava.public</id>
30+
<url>https://maven.scijava.org/content/groups/public</url>
31+
</repository>
32+
</repositories>
33+
34+
<dependencies>
35+
<!-- include fiji -->
36+
<dependency>
37+
<groupId>sc.fiji</groupId>
38+
<artifactId>fiji</artifactId>
39+
<scope>test</scope>
40+
</dependency>
41+
42+
<!-- JUnit 5 - https://junit.org/junit5/ -->
43+
<dependency>
44+
<groupId>org.junit.jupiter</groupId>
45+
<artifactId>junit-jupiter-api</artifactId>
46+
<scope>test</scope>
47+
</dependency>
48+
49+
</dependencies>
50+
51+
</project>

0 commit comments

Comments
 (0)