You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AGENTS.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,23 @@ htmlunit-cssparser/
39
39
│ ├── java/ # JUnit 5 test classes
40
40
│ └── resources/ # CSS test fixture files
41
41
└── target/ # Build output (not committed)
42
+
43
+
src/main/module-info/
44
+
└── module-info.java # Java Platform Module System descriptor (separate for IDE compatibility)
42
45
```
43
46
47
+
## Module System (JPMS)
48
+
49
+
This project uses the Java Platform Module System. The `module-info.java` file is located in `src/main/module-info/` (instead of the standard `src/main/java/`) to avoid compatibility issues with Eclipse IDE.
50
+
51
+
**Key Points:**
52
+
- The module descriptor is automatically included during Maven builds via `build-helper-maven-plugin`
0 commit comments