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
178 lines (162 loc) · 4.48 KB
/
Copy pathpom.xml
File metadata and controls
178 lines (162 loc) · 4.48 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
<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-api</artifactId>
<name>PL/Java API</name>
<description>The API for Java stored procedures in PostgreSQL using PL/Java</description>
<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-service-config</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${basedir}/target/classes</outputDirectory>
<resources>
<resource>
<directory>src/main/late-added-resources</directory>
<filtering>false</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</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", "module-summary")
.toString();
}
function isExternalReport(report)
{
return true;
}
function executeReport(report, locale)
{
try
{
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 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).
*/
"-encoding", report.inputEncoding,
"--module", "org.postgresql.pljava",
"--module-source-path", "org.postgresql.pljava=" + srcroot,
/*
* 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,
"-d", report.reportOutputDirectory.toPath()
.resolve("apidocs").toString(),
"-docencoding", report.outputEncoding,
"-doctitle", title,
"-link", jdklink,
//"-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 task = tool.getTask(null, null, 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>