Skip to content

Commit 1d14caf

Browse files
committed
add module-info.java
1 parent 8635b66 commit 1d14caf

2 files changed

Lines changed: 40 additions & 17 deletions

File tree

pom.xml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -64,23 +64,6 @@
6464

6565
<build>
6666
<plugins>
67-
<plugin>
68-
<groupId>org.openrewrite.maven</groupId>
69-
<artifactId>rewrite-maven-plugin</artifactId>
70-
<version>6.26.0</version>
71-
<configuration>
72-
<activeRecipes>
73-
<recipe>org.openrewrite.java.migrate.UpgradeToJava17</recipe>
74-
</activeRecipes>
75-
</configuration>
76-
<dependencies>
77-
<dependency>
78-
<groupId>org.openrewrite.recipe</groupId>
79-
<artifactId>rewrite-migrate-java</artifactId>
80-
<version>3.24.0</version>
81-
</dependency>
82-
</dependencies>
83-
</plugin>
8467
<plugin>
8568
<artifactId>maven-compiler-plugin</artifactId>
8669
<version>${compiler-plugin.version}</version>

src/main/java/module-info.java

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* https://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
/**
20+
* HtmlUnit XPath module.
21+
* <p>
22+
* This module provides XPath 1.0 functionality for HtmlUnit.
23+
* It is based on a fork of Apache Xalan's XPath engine, streamlined to include
24+
* only the XPath evaluation capabilities needed by HtmlUnit.
25+
* </p>
26+
*
27+
* @author Ronald Brill
28+
* @since 5.0.0
29+
*/
30+
module org.htmlunit.xpath {
31+
exports org.htmlunit.xpath;
32+
exports org.htmlunit.xpath.axes;
33+
exports org.htmlunit.xpath.compiler;
34+
exports org.htmlunit.xpath.functions;
35+
exports org.htmlunit.xpath.objects;
36+
exports org.htmlunit.xpath.operations;
37+
exports org.htmlunit.xpath.patterns;
38+
exports org.htmlunit.xpath.res;
39+
exports org.htmlunit.xpath.xml.utils;
40+
}

0 commit comments

Comments
 (0)