spring-boot-testjars icon indicating copy to clipboard operation
spring-boot-testjars copied to clipboard

Results 39 spring-boot-testjars issues
Sort by recently updated
recently updated
newest added

The main should reflectively try `org.springframework.boot.loader.launch.JarLauncher` `org.springframework.boot.loader.JarLauncher` and then `org.springframework.experimental.boot.server.exec.main.SpringBootApplicationMain`

When adding dependencies using MavenClasspathEntry it should support Spring Boot's dependency management

I think we should be able to allow users to inject RepositorySystemSession, RepositorySystem, etc into MavenClasspathEntry so that all settings are available. This is so Spring doesn't need its own...

We should consider adding various conventions based configurations. Some ideas are: - [x] #17 - [ ] #18

It might be interesting to be able to create test jars through Spring Properties. Something like the following could leverage gh-10 to create an Authorization Server: ```yml spring: testjars: authorization-server:...

The project name is not very accurate as it really only allows starting external Spring Boot servers and then mapping the port to the Spring Boot environment.

Currently the project [relies on TestcontainersPropertySource](https://github.com/spring-projects-experimental/spring-boot-testjars/blob/e30f840f1b208f07b984c121552e8051fad428d7/spring-boot-testjars/src/main/java/org/springframework/experimental/boot/test/context/DynamicPropertyDefinitionRegistrar.java#L60) to create `DynamicPropertyRegistry`. The usage of `TestcontainersPropertySource` adds a dependency on `spring-boot-testcontainers`. This dependency does not make sense since users will likely want to...