• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

moosetechnology / MooseNexus / 12725447942

11 Jan 2025 03:30PM UTC coverage: 36.509% (+1.6%) from 34.906%
12725447942

push

github

Gabriel-Darbord
Remove dead test class

525 of 1438 relevant lines covered (36.51%)

1.1 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/MooseNexus/NexusGradleProject.class.st
1
"
2
I represent a project managed with Gradle.
3

4
The `gradle` command or an existing `gradlew` executable is used to get the projects and dependencies declared in a build file.
5
Build files can be written in Groovy and named `build.gradle`, or written in Kotlin and named `build.gradle.kts`.
6

7
### Specification
8
Dependency descriptors are strings structured as `group:artifact:type:version:scope:path`.
9
The type can be custom, or more commonly jar, war, ear, zip, tar, or pom.
10
The scope can be custom, or one of the following:
11
- `compile` (deprecated): Compile time dependencies. Superseded by implementation.
12
- `implementation` extends `compile`: Implementation only dependencies.
13
- `compileOnly`: Compile time only dependencies, not used at runtime.
14
- `compileClasspath` extends `compile`, `compileOnly`, `implementation`: Compile classpath, used when compiling source. Used by the task compileJava.
15
- `annotationProcessor`: Annotation processors used during compilation.
16
- `runtime` (deprecated) extends `compile`: Runtime dependencies. Superseded by runtimeOnly.
17
- `runtimeOnly`: Runtime only dependencies.
18
- `runtimeClasspath` extends `runtimeOnly`, `runtime`, `implementation`: Runtime classpath contains elements of the implementation, as well as runtime-only elements.
19
- `testCompile` (deprecated) extends `compile`: Additional dependencies for compiling tests. Superseded by testImplementation.
20
- `testImplementation` extends `testCompile`, `implementation`: Implementation only dependencies for tests.
21
- `testCompileOnly`: Additional dependencies only for compiling tests, not used at runtime.
22
- `testCompileClasspath` extends `testCompile`, `testCompileOnly`, `testImplementation`: Test compile classpath, used when compiling test sources. Used by the task compileTestJava.
23
- `testRuntime` (deprecated) extends `runtime`, `testCompile`: Additional dependencies for running tests only. Superseded by testRuntimeOnly.
24
- `testRuntimeOnly` extends `runtimeOnly`: Runtime-only dependencies for running tests.
25
- `testRuntimeClasspath` extends `testRuntimeOnly`, `testRuntime`, `testImplementation`: Runtime classpath for running tests. Used by the task test.
26
- `archives`: Artifacts (e.g., jars) produced by this project. Used by the task uploadArchives.
27
- `default` extends `runtime`: The default configuration used by a project dependency on this project. Contains the artifacts and dependencies required by this project at runtime.
28

29
"
30
Class {
31
        #name : 'NexusGradleProject',
32
        #superclass : 'NexusManagedProject',
33
        #category : 'MooseNexus-Project',
34
        #package : 'MooseNexus',
35
        #tag : 'Project'
36
}
37

38
{ #category : 'testing' }
39
NexusGradleProject >> isGradleProject [
×
40

×
41
        ^ true
×
42
]
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc