|
| 1 | +module com.impossibl.postgres { |
| 2 | + requires transitive com.impossibl.jdbc.spy; |
| 3 | + |
| 4 | + requires io.netty.buffer; |
| 5 | + requires io.netty.codec; |
| 6 | + requires io.netty.common; |
| 7 | + requires io.netty.handler; |
| 8 | + requires io.netty.transport; |
| 9 | + requires static io.netty.transport.epoll; |
| 10 | + requires static io.netty.transport.kqueue; |
| 11 | + requires static io.netty.transport.unix.common; |
| 12 | + |
| 13 | + requires static java.compiler; |
| 14 | + requires transitive java.logging; |
| 15 | + requires transitive java.naming; |
| 16 | + requires java.security.sasl; |
| 17 | + requires transitive java.sql; |
| 18 | + requires transitive java.transaction.xa; |
| 19 | + requires java.xml; |
| 20 | + |
| 21 | + exports com.impossibl.postgres.api.data; |
| 22 | + exports com.impossibl.postgres.api.jdbc; |
| 23 | + exports com.impossibl.postgres.jdbc; |
| 24 | + exports com.impossibl.postgres.jdbc.xa; |
| 25 | + |
| 26 | + uses com.impossibl.postgres.system.procs.ProcProvider; |
| 27 | + |
| 28 | + provides com.impossibl.postgres.system.procs.ProcProvider with |
| 29 | + com.impossibl.postgres.system.procs.ACLItems, |
| 30 | + com.impossibl.postgres.system.procs.Arrays, |
| 31 | + com.impossibl.postgres.system.procs.BitMods, |
| 32 | + com.impossibl.postgres.system.procs.Bits, |
| 33 | + com.impossibl.postgres.system.procs.Bools, |
| 34 | + com.impossibl.postgres.system.procs.Boxes, |
| 35 | + com.impossibl.postgres.system.procs.Bytes, |
| 36 | + com.impossibl.postgres.system.procs.Cidrs, |
| 37 | + com.impossibl.postgres.system.procs.Circles, |
| 38 | + com.impossibl.postgres.system.procs.Dates, |
| 39 | + com.impossibl.postgres.system.procs.Domains, |
| 40 | + com.impossibl.postgres.system.procs.Float4s, |
| 41 | + com.impossibl.postgres.system.procs.Float8s, |
| 42 | + com.impossibl.postgres.system.procs.HStores, |
| 43 | + com.impossibl.postgres.system.procs.Inets, |
| 44 | + com.impossibl.postgres.system.procs.Int2s, |
| 45 | + com.impossibl.postgres.system.procs.Int2Vectors, |
| 46 | + com.impossibl.postgres.system.procs.Int4s, |
| 47 | + com.impossibl.postgres.system.procs.Int8s, |
| 48 | + com.impossibl.postgres.system.procs.Intervals, |
| 49 | + com.impossibl.postgres.system.procs.Jsons, |
| 50 | + com.impossibl.postgres.system.procs.Lines, |
| 51 | + com.impossibl.postgres.system.procs.LSegs, |
| 52 | + com.impossibl.postgres.system.procs.MacAddrs, |
| 53 | + com.impossibl.postgres.system.procs.MacAddr8s, |
| 54 | + com.impossibl.postgres.system.procs.Moneys, |
| 55 | + com.impossibl.postgres.system.procs.Names, |
| 56 | + com.impossibl.postgres.system.procs.NumericMods, |
| 57 | + com.impossibl.postgres.system.procs.Numerics, |
| 58 | + com.impossibl.postgres.system.procs.Oids, |
| 59 | + com.impossibl.postgres.system.procs.OidVectors, |
| 60 | + com.impossibl.postgres.system.procs.Paths, |
| 61 | + com.impossibl.postgres.system.procs.Points, |
| 62 | + com.impossibl.postgres.system.procs.Polygons, |
| 63 | + com.impossibl.postgres.system.procs.Ranges, |
| 64 | + com.impossibl.postgres.system.procs.Records, |
| 65 | + com.impossibl.postgres.system.procs.RefCursors, |
| 66 | + com.impossibl.postgres.system.procs.Strings, |
| 67 | + com.impossibl.postgres.system.procs.Tids, |
| 68 | + com.impossibl.postgres.system.procs.TimeMods, |
| 69 | + com.impossibl.postgres.system.procs.TimestampMods, |
| 70 | + com.impossibl.postgres.system.procs.TimestampsWithoutTZ, |
| 71 | + com.impossibl.postgres.system.procs.TimestampsWithTZ, |
| 72 | + com.impossibl.postgres.system.procs.TimesWithoutTZ, |
| 73 | + com.impossibl.postgres.system.procs.TimesWithTZ, |
| 74 | + com.impossibl.postgres.system.procs.UInt4s, |
| 75 | + com.impossibl.postgres.system.procs.UUIDs, |
| 76 | + com.impossibl.postgres.system.procs.XMLs; |
| 77 | + provides java.sql.Driver with |
| 78 | + com.impossibl.postgres.jdbc.PGDriver; |
| 79 | +} |
0 commit comments