DEV Community

Pavel Ponec
Pavel Ponec

Posted on

ORM library Ujorm 3.0 is released

Today, the final version of Ujorm 3.0.0 was released, featuring a completely new ORM module for working with JavaBean and Record objects. The goal was a transparent solution with no additional dependencies, supporting type-safe construction of SQL statements.

Ujorm3 requires Java 17 or higher:

<dependencies>
    <dependency>
        <groupId>org.ujorm</groupId>
        <artifactId>ujo-core</artifactId>
        <version>3.0.0</version>
    </dependency>
    <dependency>
        <groupId>org.ujorm</groupId>
        <artifactId>ujo-orm</artifactId>
        <version>3.0.0</version>
    </dependency>
</dependencies>
Enter fullscreen mode Exit fullscreen mode

More information is available on the project's homepage on GitHub.

Top comments (1)

Collapse
 
pponec profile image
Pavel Ponec

More information is on the Dev.to:

dev.to/pponec/ujorm3-new-lightweig...