- Java 8
- Spring Boot 2
- JUnit
- Cucumber
- Kafka
- Camunda
- ElasticSearch
- Cassandra
The initial source comes from sdcuike/issueBlog#4
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1) justify-content: flex-end; | |
| 2) justify-content: center; | |
| 3) justify-content: space-around; | |
| 4) justify-content: space-between; | |
| 5) align-items: flex-end; | |
| 6) align-items: center; | |
| justify-content: center; | |
| 7) justify-content: space-around; | |
| 8) flex-direction: row-reverse; | |
| 9) flex-direction: column; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Clone all github.com repositories for a specified user. | |
| if [ $# -eq 0 ] | |
| then | |
| echo "Usage: $0 <user_name> " | |
| exit; | |
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Clone all github.com repositories for a specified user. | |
| if [ $# -eq 0 ] | |
| then | |
| echo "Usage: $0 <user_name> " | |
| exit; | |
| fi |
To generate a pom.xml file just run gradle writeNewPom
If you want to generate it as pom.xml in the root of the project, replace writeTo("$buildDir/newpom.xml") with writeTo("pom.xml")