Benjamin Muschko
Benjamin Muschko
Thanks for the nudge. I am well aware of those changes and am planning to make the relevant changes soon. If you look at the detail, you will find that...
You mean guidelines? I don't think so. I'd have a look at how the `JavaPlugin` is modeled and what other plugins it depends on. I'd actually also make your plugin...
Thanks for correcting my syntax. I meant package. Please also provide a file extension for the generated coverage profile files so they can easily be filtered e.g. `.out` or `.txt`.
@blindpirate Is the `version` property already included in the distro name with 0.8.0? Seems like there's a check box on the some of those items.
Can you comment on whether you are planning such a feature? I have the same need.
It would be good to get some pointers on how to get started. Moreover, if you have any thoughts on design decisions let me know. Maybe you already thought about...
@ezimanyi Sounds good to me. Would love to join the meeting. When are you going to have the next one? Based on the meeting notes, it seems like the next...
@mattsanta Awesome! Do you have a public resource that explains how the implementation will look like for end users?
My use case looks as follows: 1. I have a Spinnaker pipeline with one or many stages of type "Deploy (Manifest) Configuration". Think of each stage as a target environment...
Shouldn't `fromEnvironment()` work if you set the environment variable `GITHUB_ENDPOINT`? See the [code](https://github.com/hub4j/github-api/blob/master/src/main/java/org/kohsuke/github/GitHubBuilder.java#L149). Alternatively, you can manually call the method `withEndpoint(String)`. ``` GithubBuilder builder = new GithubBuilder(); builder.withEndpoint(); ```