-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathmodule-info.java
More file actions
41 lines (34 loc) · 1.16 KB
/
module-info.java
File metadata and controls
41 lines (34 loc) · 1.16 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
/*
* Copyright (c) 2020-2023 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.adt;
exports org.postgresql.pljava.adt.spi;
exports org.postgresql.pljava.annotation;
exports org.postgresql.pljava.model;
exports org.postgresql.pljava.sqlgen;
exports org.postgresql.pljava.annotation.processing
to org.postgresql.pljava.internal;
uses org.postgresql.pljava.Adapter.Service;
uses org.postgresql.pljava.Session;
uses org.postgresql.pljava.model.CatalogObject.Factory;
provides javax.annotation.processing.Processor
with org.postgresql.pljava.annotation.processing.DDRProcessor;
}