Fix comment that failed javadoc
Run PR build with javadoc profile to fail PR build instead of main build
This commit is contained in:
2
.github/workflows/ci-pr.yml
vendored
2
.github/workflows/ci-pr.yml
vendored
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user