-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpom.xml
54 lines (50 loc) · 1.77 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>nl.han.ica.dea</groupId>
<artifactId>debuggingexcercise</artifactId>
<version>0.0.1</version>
<name>Debugging Exercise</name>
<description>A repository for practicing troubleshooting techniques.</description>
<licenses>
<license>
<name>Creative Commons License</name>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ctrueden</id>
<name>Curtis Rueden</name>
<url>http://imagej.net/User:Rueden</url>
<roles>
<role>lead</role>
<role>debugger</role>
<role>reviewer</role>
<role>support</role>
<role>maintainer</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Mark Hiner</name>
<url>http://imagej.net/User:Hinerm</url>
<roles>
<role>founder</role>
</roles>
<properties>
<id>hinerm</id>
</properties>
</contributor>
</contributors>
<properties>
<license.licenseName>cc0</license.licenseName>
<license.copyrightOwners>Board of Regents of the University of
Wisconsin-Madison.
</license.copyrightOwners>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
</project>