-
Notifications
You must be signed in to change notification settings - Fork 10
/
pom.xml
100 lines (88 loc) · 3.15 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
<?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>ome</groupId>
<artifactId>bio-formats-build</artifactId>
<version>6.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Bio-Formats top-level build</name>
<description>Top-level build for all Bio-Formats components</description>
<url>https://www.openmicroscopy.org/bio-formats</url>
<inceptionYear>2018</inceptionYear>
<modules>
<module>ome-common-java</module>
<module>ome-model</module>
<module>ome-poi</module>
<module>ome-mdbtools</module>
<module>ome-jai</module>
<module>ome-codecs</module>
<module>ome-stubs</module>
<module>ome-metakit</module>
<module>bioformats</module>
<module>bio-formats-examples</module>
<module>bio-formats-documentation</module>
<module>ZarrReader</module>
</modules>
<build>
<!-- It is nice for "mvn" with no arguments to do something reasonable. -->
<defaultGoal>install</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
</plugins>
</build>
<prerequisites>
<maven>3.0.5</maven>
</prerequisites>
<organization>
<name>Open Microscopy Environment</name>
<url>http://www.openmicroscopy.org/</url>
</organization>
<issueManagement>
<system>Trac</system>
<url>https://trac.openmicroscopy.org/ome</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>https://ci.openmicroscopy.org/</url>
</ciManagement>
<mailingLists>
<mailingList>
<name>OME-users</name>
<subscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/</subscribe>
<unsubscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-users/</unsubscribe>
<post>[email protected]</post>
<archive>http://lists.openmicroscopy.org.uk/pipermail/ome-users/</archive>
</mailingList>
<mailingList>
<name>OME-devel</name>
<subscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel/</subscribe>
<unsubscribe>http://lists.openmicroscopy.org.uk/mailman/listinfo/ome-devel/</unsubscribe>
<post>[email protected]</post>
<archive>http://lists.openmicroscopy.org.uk/pipermail/ome-devel/</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:git:https://github.com/ome/bio-formats-build</connection>
<developerConnection>scm:git:[email protected]:ome/bio-formats-build</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/ome/bio-formats-build</url>
</scm>
</project>