forked from tada/pljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
198 lines (176 loc) · 5.51 KB
/
Copy pathpom.xml
File metadata and controls
198 lines (176 loc) · 5.51 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
<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>1.6.0-SNAPSHOT</version>
</parent>
<artifactId>pljava</artifactId>
<name>PL/Java backend Java code</name>
<description>Java stored procedure implementation for PostgreSQL</description>
<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>
<compilerArgs>
<arg>-h</arg>
<arg>${basedir}/target/javah-include</arg>
<arg>--processor-module-path</arg>
<arg>${basedir}/../pljava-api/target/pljava-api-${project.version}.jar</arg>
</compilerArgs>
</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 canGenerateReport(report)
{
/*
* Javadoc is run below with the --module-source-path mod=path syntax, which
* appears in javadoc 12.
*/
var v = java.lang.Runtime.version();
if ( 0 <= v.compareTo(java.lang.Runtime.Version.parse("12")) )
return true;
warn("Skipping JavaDocs; Java >= 12 required");
return false;
}
function getName(report, locale)
{
return "JavaDocs";
}
function getDescription(report, locale)
{
return "JavaDoc API documentation.";
}
function getOutputName(report)
{
return java.nio.file.Paths
.get("apidocs", "org.postgresql.pljava.internal", "module-summary")
.toString();
}
function isExternalReport(report)
{
return true;
}
function executeReport(report, locale)
{
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 args = java.util.List.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,
"--module-path", paths.get("modulepath"),
"--module-source-path", "org.postgresql.pljava.internal=" + srcroot,
// ^^^ Options recognized by the file manager end here ^^^
"--module", "org.postgresql.pljava.internal",
/*
* 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",
"--show-module-contents", "all",
"--show-packages", "all",
/*
* Options that are passed to the doclet.
*/
"-author",
"-bottom", bottom,
"-docencoding", report.outputEncoding,
"-doctitle", title,
"-link", jdklink,
"-linkoffline",
"../../RELDOTS/pljava-api/apidocs",
apioffline.toString(),
//"-sourcetab", "4",//seemed good idea but implies -linksource
"-use",
"-version",
"-windowtitle", title
);
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.
*/
var rmgr = new org.postgresql.pljava.pgxs.RelativizingFileManager(
smgr, Charset.forName(report.outputEncoding));
rmgr.handleFirstOptions(args);
var task = tool.getTask(null, rmgr, diagListener, null, args, null);
task.call();
}
]]>
</script>
</configuration>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>