Class MvnProject_1_0
java.lang.Object
com.gradle.scan.eventmodel.maven.project.MvnProject_1_0
Details about a project.
-
Field Summary
Modifier and TypeFieldDescriptionfinal String
The artifact ID of the project.The indexes of the project's direct child projects.final boolean
Whether the project was excluded from the build.final String
The group ID of the project.final long
The ID of the project.final @Nullable String
The name of the project.final String
The packaging of the project.final String
The version of the POM file declaring this project.final @Nullable("when the project doesn\'t have a pom file") MvnFileRef_1_0
The project directory.final String
The version of the project. -
Constructor Summary
ConstructorDescriptionMvnProject_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