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
38 lines (30 loc) · 1.08 KB
/
Copy pathmodule-info.java
File metadata and controls
38 lines (30 loc) · 1.08 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
/*
* 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
*/
/**
* Contains PL/Java's internal implementation.
*/
module org.postgresql.pljava.internal
{
requires java.base;
requires java.management;
requires org.postgresql.pljava;
exports org.postgresql.pljava.mbeans; // bothers me, but only interfaces
exports org.postgresql.pljava.elog to java.logging;
exports org.postgresql.pljava.policy to java.base; // has custom Permission
provides java.net.spi.URLStreamHandlerProvider
with org.postgresql.pljava.sqlj.Handler;
provides java.nio.charset.spi.CharsetProvider
with org.postgresql.pljava.internal.SQL_ASCII.Provider;
provides java.sql.Driver with org.postgresql.pljava.jdbc.SPIDriver;
provides org.postgresql.pljava.Session
with org.postgresql.pljava.internal.Session;
}