Fix comment that failed javadoc

Run PR build with javadoc profile to fail PR build instead of main build
This commit is contained in:
Fabian Krüger
2024-01-23 11:09:28 +00:00
committed by GitHub
parent 132aee3eb2
commit d1a918a0a5
2 changed files with 3 additions and 3 deletions

View File

@@ -39,4 +39,4 @@ jobs:
run: ./mvnw -B clean install
- name: Build (Linux)
if: runner.os == 'Linux'
run: ./mvnw -B -Pfunctional-tests clean install
run: ./mvnw -B -Pfunctional-tests,javadoc clean install

View File

@@ -36,8 +36,8 @@ public class MavenProjectGraph {
/**
* Create a Maven module dependency graph starting from pom.xml in {@code baseDir}.
* The dependency and dependants for all {@MavenModule}s are added when they are part
* of the build.
* The dependency and dependants for all {@link MavenProject}s are added when they are
* part of the build.
*/
public Map<MavenProject, Set<MavenProject>> from(Path baseDir, List<MavenProject> allMavenProjects) {
// build map of projectId -> MavenProject