forked from tada/pljava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule-info.java
More file actions
34 lines (29 loc) · 966 Bytes
/
Copy pathmodule-info.java
File metadata and controls
34 lines (29 loc) · 966 Bytes
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
/*
* Copyright (c) 2020 Tada AB and other contributors, as listed below.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the The BSD 3-Clause License
* which accompanies this distribution, and is available at
* http://opensource.org/licenses/BSD-3-Clause
*
* Contributors:
* Chapman Flack
*/
/**
* Defines the API for PL/Java.
*/
@SuppressWarnings("module") // don't warn that o.p.p.internal's not visible yet
module org.postgresql.pljava
{
requires java.base;
requires transitive java.sql;
requires transitive java.compiler;
exports org.postgresql.pljava;
exports org.postgresql.pljava.annotation;
exports org.postgresql.pljava.sqlgen;
exports org.postgresql.pljava.annotation.processing
to org.postgresql.pljava.internal;
uses org.postgresql.pljava.Session;
provides javax.annotation.processing.Processor
with org.postgresql.pljava.annotation.processing.DDRProcessor;
}