Skip to content

Commit

Permalink
Adding module-info and generated classes
Browse files Browse the repository at this point in the history
  • Loading branch information
moaxcp committed Nov 22, 2023
1 parent 6d4753d commit 36465a4
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules/buildSrc/x11-client.buildSrc.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions .idea/modules/x11-client.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion .idea/x11-client.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jacocoTestReport {
}

x11Protocol {
outputSrc = file('build/generated/xproto/java/')
outputResources = file('build/generated/xproto/resources')
outputSrc = file('src/xproto/java/')
outputResources = file('src/xproto/resources')
xcbXmls = file('src/main/xcbXmls')
keysymHeaders = file('src/main/keysym')
}
Expand Down
36 changes: 36 additions & 0 deletions src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
module com.github.moaxcp.x11.client {
exports com.github.moaxcp.x11client;
exports com.github.moaxcp.x11client.experimental;
exports com.github.moaxcp.x11client.protocol;
exports com.github.moaxcp.x11client.protocol.xproto;
exports com.github.moaxcp.x11client.protocol.bigreq;
exports com.github.moaxcp.x11client.protocol.composite;
exports com.github.moaxcp.x11client.protocol.damage;
exports com.github.moaxcp.x11client.protocol.dpms;
exports com.github.moaxcp.x11client.protocol.dri2;
exports com.github.moaxcp.x11client.protocol.dri3;
exports com.github.moaxcp.x11client.protocol.ge;
exports com.github.moaxcp.x11client.protocol.glx;
exports com.github.moaxcp.x11client.protocol.present;
exports com.github.moaxcp.x11client.protocol.randr;
exports com.github.moaxcp.x11client.protocol.record;
exports com.github.moaxcp.x11client.protocol.render;
exports com.github.moaxcp.x11client.protocol.res;
exports com.github.moaxcp.x11client.protocol.screensaver;
exports com.github.moaxcp.x11client.protocol.shape;
exports com.github.moaxcp.x11client.protocol.shm;
exports com.github.moaxcp.x11client.protocol.sync;
exports com.github.moaxcp.x11client.protocol.xc_misc;
exports com.github.moaxcp.x11client.protocol.xevie;
exports com.github.moaxcp.x11client.protocol.xf86dri;
exports com.github.moaxcp.x11client.protocol.xf86vidmode;
exports com.github.moaxcp.x11client.protocol.xfixes;
exports com.github.moaxcp.x11client.protocol.xinerama;
exports com.github.moaxcp.x11client.protocol.xinput;
exports com.github.moaxcp.x11client.protocol.xkb;
exports com.github.moaxcp.x11client.protocol.xprint;
exports com.github.moaxcp.x11client.protocol.xselinux;
exports com.github.moaxcp.x11client.protocol.xtest;
exports com.github.moaxcp.x11client.protocol.xv;
exports com.github.moaxcp.x11client.protocol.xvmc;
}

0 comments on commit 36465a4

Please sign in to comment.