Files
hawkbit/hawkbit-repository/hawkbit-repository-jpa-hibernate
Avgustin Marinov 36fa915cbc Improve @Value properties (#2352)
Implement recommendation from https://docs.spring.io/spring-boot/reference/features/external-config.html to use kebab case for @Values:

If you do want to use @Value, we recommend that you refer to property names using their canonical form (kebab-case using only lowercase letters). This will allow Spring Boot to use the same logic as it does when relaxed binding @ConfigurationProperties.

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
2025-04-11 16:46:34 +03:00
..
2025-02-11 12:50:51 +02:00
2024-12-16 16:08:07 +02:00

hawkBit JPA Hibernate Vendor integration

Implementation of Hibernate JPA vendor.

To use this vendor you could exclude the org.eclipse.hawkbit:hawkbit.repository-jpa-eclipselink and include this module. For instance if you use org.eclipse.hawkbit:hawkbit-repository-jpa via org.eclipse.hawkbit:hawkbit-starter you could do it like this:

<dependency>
    <groupId>org.eclipse.hawkbit</groupId>
    <artifactId>hawkbit-starter</artifactId>
    <version>${project.version}</version>
    <exclusions>
        <exclusion>
            <groupId>org.eclipse.hawkbit</groupId>
            <artifactId>hawkbit-repository-jpa-eclipselink</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.eclipse.hawkbit</groupId>
    <artifactId>hawkbit-repository-jpa-hibernate</artifactId>
    <version>${project.version}</version>
</dependency>