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
30 lines (25 loc) · 831 Bytes
/
Copy pathmodule-info.java
File metadata and controls
30 lines (25 loc) · 831 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
/*
* 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;
provides java.sql.Driver with org.postgresql.pljava.jdbc.SPIDriver;
provides org.postgresql.pljava.Session
with org.postgresql.pljava.internal.Session;
}