-
Notifications
You must be signed in to change notification settings - Fork 5
/
pom.xml
65 lines (57 loc) · 1.87 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
55
56
57
58
59
60
61
62
63
64
65
<?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>
<parent>
<groupId>org.scijava</groupId>
<artifactId>pom-scijava</artifactId>
<version>27.0.1</version>
</parent>
<groupId>net.clearvolume</groupId>
<artifactId>cleargl</artifactId>
<version>2.2.10</version>
<name>ClearGL</name>
<description>jogl convenience wrapper</description>
<properties>
<package-name>net.clearvolume.cleargl</package-name>
<scijava.jvm.version>1.8</scijava.jvm.version>
<enforcer.skip>true</enforcer.skip>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<scm>
<connection>scm:git:git://github.com/ClearVolume/ClearGL</connection>
<developerConnection>scm:git:[email protected]:ClearVolume/ClearGL</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/ClearVolume/ClearGL</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/ClearVolume/ClearGL/issues</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>http://jenkins.imagej.net/job/ClearGL/</url>
</ciManagement>
<dependencies>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>imagej.public</id>
<url>https://maven.scijava.org/content/groups/public</url>
</repository>
</repositories>
</project>