Skip to content

Commit

Permalink
fix javaDoc generating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHossfeld committed Dec 19, 2023
1 parent d7afaad commit ef6b791
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
package com.github.nalukit.nalu.processor;

import com.github.nalukit.nalu.processor.test.ProviderTest;
import org.junit.platform.runner.JUnitPlatform;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;
import org.junit.runner.RunWith;

@Suite()
@SelectClasses({ ProviderTest.class })
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
<gwt-regexp.version>1.0.0-RC1</gwt-regexp.version>
<gwt.version>2.10.0</gwt.version>
<hamcrest-core.version>2.2</hamcrest-core.version>
<java.doc.executable>${java.home}/bin/javadoc</java.doc.executable>
<javapoet.version>1.13.0</javapoet.version>
<jsinterop-annotations.version>2.0.0</jsinterop-annotations.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
Expand Down Expand Up @@ -279,7 +280,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>${plugin.version.javadoc}</version>
<configuration>
<javadocExecutable>${java.home}/../bin/javadoc</javadocExecutable>
<javadocExecutable>${java.doc.executable}</javadocExecutable>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit ef6b791

Please sign in to comment.