Skip to content

Commit 259fd00

Browse files
committed
bring back module-info.java
This reverts parts commit 1f17218.
1 parent 1f17218 commit 259fd00

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed

src/main/java/module-info.java

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
/*
2+
* Copyright (c) 2002-2026 Gargoyle Software Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* https://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS,
11+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* See the License for the specific language governing permissions and
13+
* limitations under the License.
14+
*/
15+
16+
/**
17+
* @author Ronald Brill
18+
* @since 5.0
19+
*/
20+
module org.htmlunit {
21+
requires java.desktop;
22+
requires java.xml;
23+
requires jdk.xml.dom;
24+
25+
requires htmlunit.websocket.client;
26+
27+
requires org.htmlunit.cssparser;
28+
requires org.htmlunit.corejs;
29+
requires org.htmlunit.csp;
30+
requires org.htmlunit.cyberneko;
31+
requires org.htmlunit.xpath;
32+
requires org.apache.commons.io;
33+
requires org.apache.commons.lang3;
34+
requires org.apache.commons.logging;
35+
requires org.apache.httpcomponents.httpcore;
36+
requires org.apache.httpcomponents.httpclient;
37+
requires org.apache.httpcomponents.httpmime;
38+
39+
exports org.htmlunit;
40+
exports org.htmlunit.attachment;
41+
exports org.htmlunit.css;
42+
exports org.htmlunit.html;
43+
exports org.htmlunit.html.impl;
44+
exports org.htmlunit.html.parser;
45+
exports org.htmlunit.html.parser.neko;
46+
exports org.htmlunit.html.serializer;
47+
exports org.htmlunit.html.xpath;
48+
exports org.htmlunit.http;
49+
exports org.htmlunit.httpclient;
50+
exports org.htmlunit.javascript;
51+
exports org.htmlunit.javascript.background;
52+
exports org.htmlunit.javascript.configuration;
53+
exports org.htmlunit.javascript.host;
54+
exports org.htmlunit.javascript.host.abort;
55+
exports org.htmlunit.javascript.host.animations;
56+
exports org.htmlunit.javascript.host.arrays;
57+
exports org.htmlunit.javascript.host.canvas;
58+
exports org.htmlunit.javascript.host.crypto;
59+
exports org.htmlunit.javascript.host.css;
60+
exports org.htmlunit.javascript.host.dom;
61+
exports org.htmlunit.javascript.host.draganddrop;
62+
exports org.htmlunit.javascript.host.event;
63+
exports org.htmlunit.javascript.host.fetch;
64+
exports org.htmlunit.javascript.host.file;
65+
exports org.htmlunit.javascript.host.geo;
66+
exports org.htmlunit.javascript.host.html;
67+
exports org.htmlunit.javascript.host.idb;
68+
exports org.htmlunit.javascript.host.intl;
69+
exports org.htmlunit.javascript.host.media;
70+
exports org.htmlunit.javascript.host.media.midi;
71+
exports org.htmlunit.javascript.host.media.presentation;
72+
exports org.htmlunit.javascript.host.media.rtc;
73+
exports org.htmlunit.javascript.host.network;
74+
exports org.htmlunit.javascript.host.payment;
75+
exports org.htmlunit.javascript.host.performance;
76+
exports org.htmlunit.javascript.host.security;
77+
exports org.htmlunit.javascript.host.speech;
78+
exports org.htmlunit.javascript.host.svg;
79+
exports org.htmlunit.javascript.host.worker;
80+
exports org.htmlunit.javascript.host.xml;
81+
exports org.htmlunit.javascript.polyfill;
82+
exports org.htmlunit.javascript.preprocessor;
83+
exports org.htmlunit.javascript.proxyautoconfig;
84+
exports org.htmlunit.platform;
85+
exports org.htmlunit.platform.canvas.rendering;
86+
exports org.htmlunit.platform.dom.traversal;
87+
exports org.htmlunit.platform.font;
88+
exports org.htmlunit.platform.geom;
89+
exports org.htmlunit.platform.image;
90+
exports org.htmlunit.protocol;
91+
exports org.htmlunit.protocol.about;
92+
exports org.htmlunit.protocol.data;
93+
exports org.htmlunit.protocol.javascript;
94+
exports org.htmlunit.svg;
95+
exports org.htmlunit.util;
96+
exports org.htmlunit.util.brotli;
97+
exports org.htmlunit.util.geometry;
98+
exports org.htmlunit.websocket;
99+
exports org.htmlunit.webstart;
100+
exports org.htmlunit.xml;
101+
}

0 commit comments

Comments
 (0)