aloof-dawn-47658
06/27/2022, 12:36 PMsparse-arm-65382
06/28/2022, 6:00 AMable-quill-56063
06/28/2022, 7:57 AMcalm-horse-33012
07/02/2022, 1:48 PMsteep-minister-28895
07/04/2022, 1:47 PMpulumi/templates
. It's about adding support for Gradle with Kotlin DSL. Kotlin DSL is a first-class citizen in Gradle docs already + more and more projects are adopting it, so I think the template is worth having in Pulumi :).
Please take a look:
https://github.com/pulumi/templates/pull/301
(btw let me know if there is a better name for the template)dry-engine-56205
07/05/2022, 6:25 PMsteep-apple-98525
07/27/2022, 7:50 PMimport com.pulumi.asset.FileAsset;
import com.pulumi.aws.s3.BucketObject;
import com.pulumi.aws.s3.BucketObjectArgs;
fun main() = Pulumi.run { ctx ->
// var bucket = ...
// Create an S3 Bucket object
BucketObject("index.html", BucketObjectArgs(
bucket = bucket.getId(),
source = new FileAsset("index.html"),
))
}
delightful-bear-69098
08/12/2022, 12:58 PMgreat-pharmacist-55508
08/23/2022, 2:58 PM*Args
/ builder
/ build
triad.white-terabyte-21934
09/06/2022, 3:36 PMsteep-minister-28895
09/08/2022, 9:39 PM#Newbee Question - Hi ,is it possible to use ‘breakpoint’ with in an IDE using pulumi-java stack ?Any sample here ?@white-terabyte-21934 As Paweł mentioned above, you can use remote debug. I use it quite often. 1. Add
applicationDefaultJvmArgs
to your gradle/mvn build file (I use Kotlin DSL, but doing this for Groovy DSL should be very similar). Example:
// ...
application {
mainClass.set(
project.findProperty("mainClass") as? String ?: "<http://myproject.App|myproject.App>"
)
applicationDefaultJvmArgs = listOf("-agentlib:jdwp=transport=dt_socket,suspend=y,server=y,address=8000")
}
// ...
2. Run pulumi up
.
3. Run "Remote JVM Debug" in IntelliJ (screenshot below).late-insurance-75107
09/18/2022, 8:09 AMfull-dress-10026
10/26/2022, 4:14 PMcom.google.code.findbugs/jsr305 3.0.2
is a runtime dependency of the com.pulumi/pulumi
library?limited-account-35949
11/07/2022, 1:58 PMgray-analyst-72949
12/27/2022, 3:41 PMfull-window-21515
12/28/2022, 11:38 PMfull-window-21515
12/28/2022, 11:40 PMsteep-minister-28895
01/02/2023, 5:48 PMclever-cricket-88439
01/14/2023, 7:38 PMstale-nail-55781
01/23/2023, 6:54 PMbulky-oil-97030
02/23/2023, 12:02 PMbulky-oil-97030
02/23/2023, 12:06 PM