Stas Bezuhlyi
0a4d0fa2ca
Update Jenkinsfile
2021-04-08 23:11:06 +03:00
Stas Bezuhlyi
60b3efe73e
Update Jenkinsfile
2021-04-08 23:06:01 +03:00
Stas Bezuhlyi
7afaa3e07e
Update Jenkinsfile
2021-04-08 23:02:30 +03:00
Stas Bezuhlyi
ab91c3c4af
Update Jenkinsfile
2021-04-08 21:06:16 +03:00
Stas Bezuhlyi
9b1b053f4a
Update Jenkinsfile
2021-04-08 21:03:14 +03:00
Stas Bezuhlyi
2c3861472a
Update Jenkinsfile
2021-04-08 21:00:28 +03:00
Stas Bezuhlyi
13ddc95aa0
Update Jenkinsfile
2021-04-08 20:51:45 +03:00
Stas Bezuhlyi
a35f0d2117
Update Jenkinsfile
2021-04-08 20:50:44 +03:00
Stas Bezuhlyi
de7ca3bf3e
Update Jenkinsfile
2021-04-08 20:44:39 +03:00
Stas Bezuhlyi
349ad487f4
Update Jenkinsfile
2021-04-08 19:32:35 +03:00
Stas Bezuhlyi
8766ed8826
Update Jenkinsfile
2021-04-08 19:29:28 +03:00
Stas Bezuhlyi
0187e33136
Update Jenkinsfile
2021-04-08 19:25:43 +03:00
Stas Bezuhlyi
bdbfc4480c
Update Jenkinsfile
2021-04-08 18:57:27 +03:00
Stas Bezuhlyi
8ccf5b22f5
Update Jenkinsfile
2021-04-08 18:48:49 +03:00
Stas Bezuhlyi
27d904196a
Update Jenkinsfile
2021-04-08 18:34:08 +03:00
Stas Bezuhlyi
524c603075
Update Jenkinsfile
2021-04-08 18:31:19 +03:00
Stas Bezuhlyi
0c999cd7e8
Update Jenkinsfile
2021-04-08 18:22:32 +03:00
Stas Bezuhlyi
67084277f8
Update Jenkinsfile
2021-04-08 18:21:20 +03:00
Stas Bezuhlyi
1fbfe27d2e
Create Dockerfile
2021-04-08 18:15:29 +03:00
Stas Bezuhlyi
01eb2c736f
Update Jenkinsfile
2021-04-08 14:45:14 +03:00
Stas Bezuhlyi
cf348de19f
Update Jenkinsfile
2021-04-08 14:41:31 +03:00
Stas Bezuhlyi
0087bfd2c4
Update Jenkinsfile
2021-04-08 14:34:02 +03:00
Stas Bezuhlyi
2b01271ed3
Update Jenkinsfile
2021-04-08 14:32:20 +03:00
Stas Bezuhlyi
ff288d21df
Update Jenkinsfile
2021-04-08 14:30:28 +03:00
Stas Bezuhlyi
c2bce7ee5c
Update Jenkinsfile
2021-04-08 14:27:06 +03:00
Stas Bezuhlyi
30b9f5b20a
Update Jenkinsfile
2021-04-03 22:22:59 +03:00
Stas Bezuhlyi
20208ac20b
Update Jenkinsfile
2021-04-01 22:09:08 +03:00
Stas Bezuhlyi
13f6d67a7e
Update Jenkinsfile
2021-04-01 16:04:40 +03:00
Stas Bezuhlyi
91725e991c
Update Jenkinsfile
2021-04-01 15:51:33 +03:00
Stas Bezuhlyi
a9701d8c86
Update Jenkinsfile
2021-04-01 15:44:34 +03:00
Stas Bezuhlyi
2084ba74ae
Update Jenkinsfile
2021-04-01 15:24:23 +03:00
Stas Bezuhlyi
bf43541dd5
Update Jenkinsfile
2021-04-01 15:23:42 +03:00
Stas Bezuhlyi
0507e80833
Update Jenkinsfile
2021-04-01 15:16:45 +03:00
Stanislav Bezuhlyi
1e0f525cc0
modify Jenkinsfile
2021-03-31 21:45:30 +03:00
Stanislav Bezuhlyi
5349878317
modify Jenkinsfile
2021-03-31 21:44:28 +03:00
Stanislav Bezuhlyi
4d8ec3d197
modify Jenkinsfile
2021-03-31 21:19:24 +03:00
Stanislav Bezuhlyi
6674ab172f
Merge branch 'main' of https://github.com/stasbezuhlyi/spring-petclinic into main
2021-03-31 21:04:16 +03:00
Stanislav Bezuhlyi
b80b8d9869
Add Jenkinsfile
2021-03-31 21:03:42 +03:00
Stanislav Bezuhlyi
b1e9acbb9b
Add Jenkinsfile
2021-03-31 20:59:47 +03:00
Dave Syer
e2fbc56130
Only publish docker image from main branch
2021-01-28 12:01:57 +00:00
Diego Lemos
a0d743cfed
Do not fail packaging if repo info is absent
...
As part of a process to build a BOSH release, I encountered the error
below while running `./mvnw package`:
```
[ERROR] Failed to execute goal pl.project13.maven:git-commit-id-plugin:3.0.1:revision (default) on project spring-petclinic: Could not complete Mojo execution...: Error: Could not get HEAD Ref, are you sure you have set the dotGitDirectory property of this plugin to a valid path? -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
```
That's because we are just interested on the source files for the BOSH
release, we don't care about repo metadata (so we exclude them).
Going through the [git-commit-id-maven-plugin
docs](https://github.com/git-commit-id/git-commit-id-maven-plugin/blob/master/maven/docs/using-the-plugin.md )
we learned it is possible to prevent the failure above via
configuration.
We propose then to set
`<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>`,
enabling use cases similar to ours.
FWIW `failOnNoGitDirectory` is already set to false.
2021-01-28 10:13:23 +00:00
Dave Syer
3a040886fe
Add docker push to CI
2021-01-28 09:57:17 +00:00
Dave Syer
04471aec49
Update to Boot 2.4.2
2021-01-28 09:55:39 +00:00
Stephane Nicoll
02babdd8cb
Upgrade to Spring Boot 2.4.1
2020-12-25 13:02:48 +01:00
Stephane Nicoll
8065ad00e2
Merge pull request #707 from Arka-Bandyopadhyay
...
* pr/707:
Downgrade to wro4j 1.8.0
remove .vscode folder from project repository
Closes gh-707
2020-11-29 11:44:14 +01:00
Arka Bandyopadhyay
0573cda3c2
Downgrade to wro4j 1.8.0
...
This commit downgrades the wro4j plugin to 1.8.0 as the latest version
requires Java 11.
See gh-707
2020-11-29 11:43:28 +01:00
Stephane Nicoll
502870d6c0
Remove IDE specific configuration files
...
Closes gh-706
2020-11-29 11:39:01 +01:00
Arka Bandyopadhyay
949278cd46
remove .vscode folder from project repository
2020-11-29 14:21:33 +05:30
Dave Syer
ab9135ad9b
Upgrade to Spring Boot 2.4.0
2020-11-24 10:44:41 +00:00
Cesarion Pshebytski
8b1ac6736e
Updated user for mysql
...
Updated creation of user for mysql db. Previously lack of quotes resulted in creation of incorrect user (petclinic@% instead of just petclinic)
2020-11-06 11:13:25 +00:00