Barry Kaplan
- Total activity 29
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 10
-
-
Barry Kaplan created a post, kotlin dsl: Refactor-rename BuildTypes but retain build history
I found out the hard way after cleaning up all the inconsistent naming our our build types, that after renaming I lost all the build history. This is because the kotlin generator did not include th... -
Barry Kaplan created a post, kotlin dsl: project subpackage naming conventions
As part of the kotlin conversion, the projects each have subpackages `buildTypes` and `vcsRoots`. I was inclined to name the the vcs roots and builds the same using package scoping the project file... -
Barry Kaplan created a post, kotlin dsl: Initial conversion and root project naming
After converting from xml to kotlin, the root project package name is "_Self", and its Project object doesn't have a `name` or `id` like other projects. package _Selfobject Project : Project({ d... -
Barry Kaplan created a post, kotlin dsl: Why does package rename clear the Project id?
After export to kotlin I have a lot of package names that capitalized package Opsobject Project : Project ({ id("Ops") name = "ops" ... After doing a rename refactor on the package from "O... -
-
Barry Kaplan created a post, kotlin dsl: How to disable a step?
After converting to kotlin, disablabled steps looks like disableSettings("RUNNER_166", "RUNNER_167", "RUNNER_394") But how would I disable a custom step that is defined in the template like steps {... -
-
-
Barry Kaplan created a post, Write literal bash script in kotlin string?
How can I create a bash script as a multi-line string without kotlin/idea trying to interpret the contents? The below snippet has all kinds of errors in idea because kotlin is trying to find the ba...