— No reviews yet
0 installs
19 views
0.0% view→install
Install
$ agentstack add skill-ngxtm-devkit-build-gradle ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Are you the author of Gradle Build? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claimAbout
Gradle Build Standards
Kotlin DSL Structure
// build.gradle.kts
plugins {
java
id("org.springframework.boot") version "3.2.0"
id("io.spring.dependency-management") version "1.1.4"
}
group = "com.example"
version = "1.0.0-SNAPSHOT"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-data-jpa")
runtimeOnly("org.postgresql:postgresql")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.test {
useJUnitPlatform()
}
Dependency Configurations
dependencies {
implementation("...") // Compile + runtime, not exposed
api("...") // Compile + runtime, exposed to consumers
compileOnly("...") // Compile only (like Lombok)
runtimeOnly("...") // Runtime only (JDBC drivers)
testImplementation("...") // Test compile + runtime
annotationProcessor("...") // Annotation processing
}
Custom Tasks
tasks.register("hello") {
group = "custom"
description = "Prints hello"
doLast {
println("Hello, Gradle!")
}
}
tasks.register("copyResources") {
from("src/main/resources")
into("build/resources")
}
Common Commands
./gradlew build # Build project
./gradlew test # Run tests
./gradlew bootRun # Run Spring Boot
./gradlew dependencies # Show dependencies
./gradlew tasks # List tasks
References
- [Kotlin DSL](references/kotlin-dsl.md) - Migration from Groovy, type-safe configuration
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ngxtm
- Source: ngxtm/devkit
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.