Skip to content

Commit

Permalink
Update module-info.java
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Feb 2, 2024
1 parent 53f5c4e commit 4fcf4b9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 13 deletions.
2 changes: 1 addition & 1 deletion modules/overrungl.core/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
overrungl.stb;

requires transitive io.github.overrun.marshal;
requires io.github.overrun.platform;
requires transitive io.github.overrun.platform;
requires static org.jetbrains.annotations;
}
4 changes: 2 additions & 2 deletions modules/overrungl.glfw/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Overrun Organization
* Copyright (c) 2023-2024 Overrun Organization
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,6 +23,6 @@
module overrungl.glfw {
exports overrungl.glfw;

requires overrungl.core;
requires transitive overrungl.core;
requires static org.jetbrains.annotations;
}
6 changes: 3 additions & 3 deletions modules/overrungl.joml/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Overrun Organization
* Copyright (c) 2023-2024 Overrun Organization
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,6 +23,6 @@
module overrungl.joml {
exports overrungl.joml;

requires overrungl.core;
requires org.joml;
requires transitive overrungl.core;
requires transitive org.joml;
}
5 changes: 2 additions & 3 deletions modules/overrungl.nfd/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Overrun Organization
* Copyright (c) 2023-2024 Overrun Organization
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,7 +23,6 @@
module overrungl.nfd {
exports overrungl.nfd;

requires overrungl.core;
requires io.github.overrun.platform;
requires transitive overrungl.core;
requires static org.jetbrains.annotations;
}
13 changes: 11 additions & 2 deletions modules/overrungl.opengl/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Overrun Organization
* Copyright (c) 2023-2024 Overrun Organization
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -26,8 +26,17 @@
exports overrungl.opengl.ext.amd;
exports overrungl.opengl.ext.apple;
exports overrungl.opengl.ext.arb;
exports overrungl.opengl.ext.ati;
exports overrungl.opengl.ext.ext;
exports overrungl.opengl.ext.ibm;
exports overrungl.opengl.ext.intel;
exports overrungl.opengl.ext.khr;
exports overrungl.opengl.ext.mesa;
exports overrungl.opengl.ext.nv;
exports overrungl.opengl.ext.oes;
exports overrungl.opengl.ext.sgi;
exports overrungl.opengl.ext.sun;

requires overrungl.core;
requires transitive overrungl.core;
requires static org.jetbrains.annotations;
}
4 changes: 2 additions & 2 deletions modules/overrungl.stb/src/main/java/module-info.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* MIT License
*
* Copyright (c) 2023 Overrun Organization
* Copyright (c) 2023-2024 Overrun Organization
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
Expand All @@ -23,6 +23,6 @@
module overrungl.stb {
exports overrungl.stb;

requires overrungl.core;
requires transitive overrungl.core;
requires static org.jetbrains.annotations;
}

0 comments on commit 4fcf4b9

Please sign in to comment.