Skip to content

Commit

Permalink
Reverted Javadoc generation to the non-module version
Browse files Browse the repository at this point in the history
  • Loading branch information
gbevin committed Aug 26, 2024
1 parent 845318a commit 5fdaf6d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
10 changes: 10 additions & 0 deletions src/bld/java/rife/AbstractRife2Build.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,16 @@ public AbstractRife2Build()
"test.h2");

javadocOperation()
.excluded(
"module-info.java",
"rife/antlr/",
"rife/asm/",
"rife/.*/databasedrivers/",
"rife/.*/imagestoredrivers/",
"rife/.*/rawstoredrivers/",
"rife/.*/textstoredrivers/",
"rife/database/capabilities/"
)
.javadocOptions()
.docLint(NO_MISSING)
.keywords()
Expand Down
9 changes: 0 additions & 9 deletions src/bld/java/rife/CoreBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ public CoreBuild()

final File srcMainModuleDir;

@Override
public void javadoc()
throws Exception {
javadocOperation().executeOnce(() -> javadocOperation()
.fromProject(this)
.sourceFiles(FileUtils.getJavaFileList(srcMainModuleDir))
.sourceFiles(FileUtils.getJavaFileList(buildGeneratedDir)));
}

public static void main(String[] args)
throws Exception {
new CoreBuild().start(args);
Expand Down

0 comments on commit 5fdaf6d

Please sign in to comment.