-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
189 lines (173 loc) · 7.27 KB
/
pom.xml
File metadata and controls
189 lines (173 loc) · 7.27 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?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>io.gdcc</groupId>
<artifactId>parent</artifactId>
<version>0.13.1</version>
</parent>
<groupId>io.gdcc.spi</groupId>
<artifactId>parent</artifactId>
<!-- For now, keep all the module versions in lockstep. Can be diversified later. -->
<version>2.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dataverse SPI Plugin API</name>
<url>https://dataverse.org</url>
<modules>
<module>api</module>
<module>core</module>
<module>export</module>
<module>meta</module>
</modules>
<description>
A package to create out-of-tree Java code for Dataverse Software. Plugin projects can use this package
as an API dependency just like Jakarta EE APIs if they want to create external plugins. These will be loaded
at runtime of a Dataverse installation using SPI. See also https://guides.dataverse.org/en/latest/developers
for more information.
</description>
<developers>
<developer>
<name>Dataverse Core Team</name>
<email>support@dataverse.org</email>
</developer>
</developers>
<licenses>
<license>
<name>${project.license.name}</name>
<url>${project.license.url}</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>https://github.com/gdcc/dataverse-spi</url>
</scm>
<properties>
<jdk.version>17</jdk.version>
<project.license.name>Apache License, Version 2.0</project.license.name>
<project.license.url>https://www.apache.org/licenses/LICENSE-2.0.txt</project.license.url>
<docs.site.base>/</docs.site.base>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.gdcc.spi</groupId>
<artifactId>meta</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.gdcc.spi</groupId>
<artifactId>core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.gdcc.spi</groupId>
<artifactId>export</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- TESTING -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>maven-skin-tools</artifactId>
<version>1.7.00</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<id>aggregate-javadocs</id>
<!-- inherited=false means children do not do the same thing individually -->
<inherited>false</inherited>
<reports>
<report>aggregate</report>
</reports>
</reportSet>
</reportSets>
<configuration>
<show>protected</show>
<!-- Remove after Javadocs -->
<doclint>none</doclint>
<detectLinks>true</detectLinks>
<failOnError>false</failOnError>
<quiet>true</quiet>
<source>${jdk.version}</source>
<doctitle>Dataverse SPI Plugin API Reference</doctitle>
<windowtitle>Dataverse SPI Plugin API Reference</windowtitle>
<addStylesheets>
<addStylesheet>custom.css</addStylesheet>
</addStylesheets>
<!-- Create a banner on top of every page allowing to return to main docs page -->
<top><![CDATA[
<div class="top-nav-backlink">
<a href="${docs.site.base}index.html">← Back to Dataverse SPI Plugin API homepage</a>
</div>
]]></top>
<bottom><![CDATA[
<div>
Version ${project.version} -
Copyright by ${project.organization.name} -
Licensed under <a href="${project.license.url}" target="_blank">${project.license.name}</a> |
<a href="${docs.site.base}index.html">Dataverse SPI Plugin API</a> |
<a href="https://dataverse.org" target="_blank">The Dataverse Project</a>
</div>
]]></bottom>
<tags>
<tag>
<name>apiNote</name>
<placement>a</placement>
<head>API Note:</head>
</tag>
<tag>
<name>implSpec</name>
<placement>a</placement>
<head>Implementation Requirements:</head>
</tag>
<tag>
<name>implNote</name>
<placement>a</placement>
<head>Implementation Note:</head>
</tag>
</tags>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.9.0</version>
<reportSets>
<reportSet>
<id>root-project-info</id>
<!-- inherited=false means children do not do the same thing individually -->
<inherited>false</inherited>
<reports>
<report>team</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>