Class MvnProject_1_0
java.lang.Object
com.gradle.scan.eventmodel.maven.project.MvnProject_1_0
Details about a project.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal StringThe artifact ID of the project.The indexes of the project's direct child projects.final booleanWhether the project was excluded from the build.final StringThe group ID of the project.final longThe ID of the project.final @Nullable StringThe name of the project.final StringThe packaging of the project.final StringThe version of the POM file declaring this project.final @Nullable("when the project doesn\'t have a pom file") MvnFileRef_1_0The project directory.final StringThe version of the project. -
Constructor Summary
ConstructorsConstructorDescriptionMvnProject_1_0(long id, @Nullable String name, String groupId, String artifactId, String packaging, String version, @Nullable MvnFileRef_1_0 projectDir, String pomVersion, List<Integer> children, boolean excluded) -
Method Summary
-
Field Details
-
id
public final long idThe ID of the project. -
name
The name of the project.Can be null if the same as the
artifactId. -
groupId
The group ID of the project. -
artifactId
The artifact ID of the project. -
packaging
The packaging of the project. -
version
The version of the project. -
projectDir
@Nullable("when the project doesn\'t have a pom file") public final @Nullable("when the project doesn\'t have a pom file") MvnFileRef_1_0 projectDirThe project directory. -
pomVersion
The version of the POM file declaring this project. -
children
The indexes of the project's direct child projects.An index can be used to look up a child project in
MvnProjectStructure_1_0.projects. -
excluded
public final boolean excludedWhether the project was excluded from the build.
-
-
Constructor Details
-
MvnProject_1_0
-
-
Method Details