-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpom.xml
More file actions
265 lines (235 loc) · 7.2 KB
/
Copy pathpom.xml
File metadata and controls
265 lines (235 loc) · 7.2 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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<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.postgresql</groupId>
<artifactId>pljava.app</artifactId>
<version>2-SNAPSHOT</version>
</parent>
<artifactId>pljava-examples</artifactId>
<name>PL/Java examples</name>
<description>Examples of Java stored procedures using PL/Java</description>
<profiles>
<profile>
<id>saxon-examples</id>
<dependencies>
<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
<version>[10.0,11)</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<includes combine.children='append'>
<include>org/postgresql/pljava/example/saxon/*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>pljava-api</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<includes>
<include>org/postgresql/pljava/example/*.java</include>
<include>org/postgresql/pljava/example/annotation/*.java</include>
</includes>
<compilerArgs>
<arg>--processor-module-path</arg>
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
</compilerArgs>
<annotationProcessors>
<annotationProcessor>
org.postgresql.pljava.annotation.processing.DDRProcessor
</annotationProcessor>
</annotationProcessors>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.postgresql</groupId>
<artifactId>pljava-pgxs</artifactId>
<version>${pljava.pgxs.version}</version>
<reportSets>
<reportSet>
<reports>
<report>scripted-report</report>
</reports>
<configuration>
<script mimetype="application/javascript">
<![CDATA[
function getName(report, locale)
{
return "JavaDocs";
}
function getDescription(report, locale)
{
return "JavaDoc API documentation.";
}
function getOutputName(report)
{
return java.nio.file.Paths.get("apidocs", "index").toString();
}
function isExternalReport(report)
{
return true;
}
function executeReport(report, locale)
{
try
{
var paths = buildPaths(report.project.compileClasspathElements);
var title = report.project.name + " " + report.project.version;
var basedir = report.project.basedir.toPath();
var srcroot = java.nio.file.Paths.get("src", "main", "java");
srcroot = resolve(basedir, srcroot);
var srcrooturi = srcroot.toUri();
var jdklink = "https://docs.oracle.com/" +
locale.language + "/java/javase/12/docs/api";
var apioffline =
basedir.toUri().resolve("../pljava-api/target/site/apidocs");
var bottom =
"Copyright © " +
report.project.inceptionYear + "–" +
new Date().getFullYear() +
"<a href='" + report.project.organization.url + "'>" +
report.project.organization.name + "</a>";
var of = java.util.List.of;
var args = of(
/*
* The 'standard options' that javadoc inherits from javac.
* Do not add --release: it causes -encoding to be ignored (in
* javadoc 12 through 15, anyway). -d is documented as a doclet
* option, but included here to be seen by the
* RelativizingFileManager (which may otherwise complain that no
* class output location has been set).
*/
"-d", report.reportOutputDirectory.toPath()
.resolve("apidocs").toString(),
"-encoding", report.inputEncoding,
"--class-path", paths.get("classpath"),
"--module-path",paths.get("modulepath"),
"-sourcepath", srcroot.toString(),
// ^^^ Options recognized by the file manager end here ^^^
"--add-modules","org.postgresql.pljava",
/*
* Core javadoc options.
* Avoid the legacy package/private/protected/public options; they
* can clobber the effects of the newer -show-...=... options.
*/
"-locale", locale.toString(),
"-quiet",
/*
* Options that are passed to the doclet.
*/
"-author",
"-bottom", bottom,
"-docencoding", report.outputEncoding,
"-doctitle", title,
"-link", jdklink,
"-sourcetab", "4",
"-use",
"-version",
"-windowtitle", title
);
args = new java.util.ArrayList(args);
/*
* Javadoc doesn't learn how to link to modular docs
* from nonmodular code until 15.
*/
var v = java.lang.Runtime.version();
if ( 0 <= v.compareTo(java.lang.Runtime.Version.parse("15-ea")) )
args.addAll(of("-linkoffline",
"../../RELDOTS/pljava-api/apidocs", apioffline.toString()));
var packages = [
"org.postgresql.pljava.example",
"org.postgresql.pljava.example.annotation"
];
if ( isProfileActive('saxon-examples') )
packages.push("org.postgresql.pljava.example.saxon");
/*
* Add the packages to be documented to args. They could perhaps also
* be supplied as JavaFileObjects in the compilationUnits parameter,
* but they are accepted among the option args, so why work any harder?
*/
packages.forEach(function(p) { args.add(p); });
debug(args.toString());
var tool = javax.tools.ToolProvider.getSystemDocumentationTool();
function diagListener(d)
{
var s = d.source;
if ( null === s )
s = "";
else
{
s = srcrooturi.relativize(s.toUri()).toString();
s += "[" + d.lineNumber + "," + d.columnNumber + "] ";
}
diag(d.kind, s + d.getMessage(locale));
}
var Charset = Java.type("java.nio.charset.Charset");
var smgr = tool.getStandardFileManager(
diagListener,
locale,
Charset.forName(report.inputEncoding)
);
/*
* A special file manager that will rewrite the RELDOTS seen in
* -linkoffline above. The options a file manager recognizes must be the
* first ones in args; handleFirstOptions below returns at the first one
* the file manager doesn't know what to do with. Java 19 seems to have
* learned to pass the args to the file manager without the fuss here.
*/
var rmgr = new org.postgresql.pljava.pgxs.RelativizingFileManager(
smgr, Charset.forName(report.outputEncoding));
if ( 0 > v.compareTo(java.lang.Runtime.Version.parse("19-ea")) )
rmgr.handleFirstOptions(args);
var task = tool.getTask(null, rmgr, diagListener, null, args, null);
if (task.call())
return null;
return report.exceptionWrap("Javadoc errors were reported");
}
catch(e)
{
return report.exceptionWrap(e);
}
}
]]>
</script>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>