- Maven POM + Spring Doc
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.6</version>
</dependency> <dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.6</version>
</dependency>| Empresa 1 | Empresa 2 | |
|---|---|---|
| Gostava mais de | café da manhã | galera |
| Gostava mais de | massagem | horário controlado |
| Gostava mais de | happy hour | coding dojo |
| Não vou sentir falta de | reuniões de sexta até 22h | discursos do chefe |
| Não vou sentir falta de | trabalhar 12h e receber 8h | cobrança de manter o foco e não conversar |
| Não vou sentir falta de | te ligarem a qualquer hora, inclusive fds | cobrança de chegar cedo mas sair tarde não |
| Valor fixo ? | sim |
| # | |
| # .gitignore for any Java app =) | |
| # | |
| # https://gist.github.com/boaglio/8c76e6cf795afa0ee04f2faf3ea97a56 | |
| # | |
| # Gradle | |
| .gradle/ | |
| **/build/ | |
| build/ |
Class has been compiled by a more recent version of the Java Environment (class file version 61.0),
this version of the Java Runtime only recognizes class file versions up to 55.0.
É quando compilamos com Java 17 (class file version 61.0) e tentamos executar com Java 11 (class file version 55.0).
| public class Java13 { | |
| public static void main(String[] args) { | |
| System.out.println("Java 13 test!"); | |
| Java13.howMany(13); | |
| } | |
| static void howMany(int k) { |
| - Why Jenkins Hackathon setup ? | |
| Don't waste your time installing stuff, start hacking right away! | |
| - What should you need: | |
| github account | |
| Git | |
| Java | |
| Maven |