Type | Graphs | Description |
---|---|---|
all | linked, flat | These are the dependencies of the project for all scopes. |
compile | linked, flat | These dependencies are required for compilation. They are available in all classpaths of the project and are also propagated as transitive dependencies to projects that depend on this project |
test | linked, flat | These dependencies are only required to compile and run unit tests for the application |
provided | linked, flat | Similar to compile, but with the expectation that the JDK or a container will provide the dependency at runtime. These dependencies are only available on the compilation and test classpaths, and are not transitive. |
Type | Graphs | Description |
---|---|---|
all | linked, flat | These are the dependencies of the project for all scopes. |
compile | linked, flat | These dependencies are required for compilation. They are available in all classpaths of the project and are also propagated as transitive dependencies to projects that depend on this project |
test | linked, flat | These dependencies are only required to compile and run unit tests for the application |
provided | linked, flat | Similar to compile, but with the expectation that the JDK or a container will provide the dependency at runtime. These dependencies are only available on the compilation and test classpaths, and are not transitive. |
Type | Graphs | Description |
---|---|---|
direct | linked, flat | Direct dependencies on Kuali projects |
transitive | linked, flat | Transitive dependencies on Kuali projects |