Skip to content

0.13.0

Compare
Choose a tag to compare
@maciejwalkowiak maciejwalkowiak released this 29 Jan 22:15
c912a86

Highlights

Multi-Module Maven Project Support

  • just run now works with mult-module Maven projects #18
$ just run <module-directory>

For example for following project structure:

.
├── application
│   └── pom.xml
├── library
│   └── pom.xml
└── pom.xml

application module is the one that is meant to be run (it has @SpringBootApplication annotated class), to run project with just execute:

$ just run application

Browser no-extension Live Reload

  • just run live-reload now reloads the current page in the browser upon changes Thymeleaf or static resources files without a need for installing LiveReload browser extension #19

Zero-Config infrastructure for just build

  • just build starts infrastructure services for tests exactly the same way as just run, so that it is possible to build a project without any extra infrastructure configuration #29

Zipkin support in zero-config infrastructure services

As soon as you have a dependency to Spring Boot Actuator and io.zipkin.reporter2:zipkin-reporter-brave, just starts the Zipkin server on port http://localhost:9411 where all traces are sent.

🎸 Enhancements

  • Upgraded Docker Images to latest versions:
    • Postgres 15.1
    • MySQL 8.0.31
    • RabbitMQ 3.11.6
    • Neo4j 4.4.16
    • Mongo 4.2.23
    • Redis 7.0.7
  • Improved handling error when port for an infrastructure service is already taken #30

Big thanks for trying out Just and reporting issues!