-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpom.xml
107 lines (96 loc) · 3.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?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>
<version>0.13.0</version>
<groupId>org.openslide</groupId>
<artifactId>openslide-java</artifactId>
<name>OpenSlide Java</name>
<description>Java interface to OpenSlide</description>
<url>https://openslide.org</url>
<inceptionYear>2007</inceptionYear>
<organization>
<name>OpenSlide project</name>
<url>https://openslide.org</url>
</organization>
<licenses>
<license>
<name>LGPL-2.1-only</name>
<url>https://raw.githubusercontent.com/openslide/openslide-java/main/COPYING.LESSER</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>22</maven.compiler.release>
</properties>
<build>
<defaultGoal>package</defaultGoal>
<sourceDirectory>.</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<showWarnings>true</showWarnings>
<compilerArgs>
<arg>-Xlint:all,-serial</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
<mainClass>org.openslide.gui.Demo</mainClass>
</manifest>
<manifestEntries>
<Enable-Native-Access>ALL-UNNAMED</Enable-Native-Access>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<distributionManagement>
<downloadUrl>https://openslide.org/download/#source</downloadUrl>
</distributionManagement>
<scm>
<connection>scm:git:https://github.com/openslide/openslide-java</connection>
<url>https://github.com/openslide/openslide-java</url>
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/openslide/openslide-java/issues</url>
</issueManagement>
<ciManagement>
<system>GitHub</system>
<url>https://github.com/openslide/openslide-java/actions</url>
</ciManagement>
<mailingLists>
<mailingList>
<name>openslide-announce</name>
<subscribe>https://lists.andrew.cmu.edu/mailman/listinfo/openslide-announce</subscribe>
<unsubscribe>https://lists.andrew.cmu.edu/mailman/listinfo/openslide-announce</unsubscribe>
<archive>https://lists.andrew.cmu.edu/pipermail/openslide-announce/</archive>
<otherArchives>
<otherArchive>https://marc.info/?l=openslide-announce</otherArchive>
</otherArchives>
</mailingList>
<mailingList>
<name>openslide-users</name>
<subscribe>https://lists.andrew.cmu.edu/mailman/listinfo/openslide-users</subscribe>
<unsubscribe>https://lists.andrew.cmu.edu/mailman/listinfo/openslide-users</unsubscribe>
<post>[email protected]</post>
<archive>https://lists.andrew.cmu.edu/pipermail/openslide-users/</archive>
<otherArchives>
<otherArchive>https://marc.info/?l=openslide-users</otherArchive>
</otherArchives>
</mailingList>
</mailingLists>
</project>