jeusdi

Results 36 comments of jeusdi

Thanks @dcoraboeuf Currently, I'm pushing on `dev` branch`. I'd like that the version pattern be like this on `dev` branch: `{artifactName}-{version}-{unstable}{count(commit)}` Example: `oauthz-0.1.0-unstable0023` Where: `"oauthz"` -> `artifactName` `"0.1.0"` -> version...

Currently, I've stuck still on that. I don't quite to figure out how to work with this plugin: Currently, I'm on master branch and it's tagged with `0.1.0`. `gradle versionDisplay`...

What are `type` and `base` for? What I want to get is picking `version` part of `branch/version` branch name. For example: `relase/0.1` -> `0.1` and adding the `patch` part of...

You given me a clue. I've dug out a bit and I've realised I used `htpasswd` command tool without `-B` option: ``` htpasswd -Bbn user passwd > docker-registry.htpasswd ``` It...

I've tried this: ``` task "undeployDev${config.name.capitalize()}"(type: com.bmuschko.gradle.cargo.tasks.remote.CargoUndeployRemote) { description = "Deploys WAR to remote Web Application Server: '${config.name}'." containerId = config.container hostname = config.hostname port = config.port username = config.username...

I've also tried this: ``` task "undeployDev${config.name.capitalize()}"(type: com.bmuschko.gradle.cargo.tasks.remote.CargoUndeployRemote) { description = "Deploys WAR to remote Web Application Server: '${config.name}'." containerId = config.container hostname = config.hostname port = config.port username =...

This is the `--stacktrace` output: ``` * Exception is: org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':undeployDevWildfly10'. at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:69) at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:46) at org.gradle.api.internal.tasks.execution.PostExecutionAnalysisTaskExecuter.execute(PostExecutionAnalysisTaskExecuter.java:35) at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:64) at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:58) at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:52) at org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter.execute(SkipTaskWithNoActionsExecuter.java:52) at...

@bmuschko have you been able to get something...?

I've just realized that I'm getting different messages when I'm using `--debug` and `--info`. When I perform `gradle deployDevWildfly10 --info` I'm getting this message: > Deployable artifacts = [D:\projects\living\platform\commty\build\dists\commty-dev-de31042.war] Starting...