Skip to content

Commit

Permalink
Update maven wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
diegocamara committed Sep 16, 2024
1 parent def13e2 commit baabe92
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 24 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ the [RealWorld](https://github.com/gothinkster/realworld) repo.

# How it works

This application basically uses Quarkus Framework with Java 11 with some other modules known to development community:
This application basically uses Quarkus Framework with Java 21 with some other modules known to development community:

* Hibernate 5
* Hibernate
* Jackson for JSON
* H2 in memory database
* JPA Criteria
Expand Down
41 changes: 20 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
<quarkus.platform.group-id>io.quarkus.platform</quarkus.platform.group-id>
<quarkus.platform.version>3.14.4</quarkus.platform.version>
<surefire-plugin.version>3.3.1</surefire-plugin.version>
<jbcrypt.version>0.4</jbcrypt.version>
<reflections.version>0.10.2</reflections.version>
<java-jwt.version>4.4.0</java-jwt.version>
<lombok.version>1.18.34</lombok.version>
<slugify.version>3.0.7</slugify.version>
</properties>
<dependencyManagement>
<dependencies>
Expand Down Expand Up @@ -52,46 +57,35 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-h2</artifactId>
<artifactId>quarkus-hibernate-orm-panache</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-test-h2</artifactId>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
<artifactId>quarkus-hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito2</artifactId>
<version>2.0.2</version>
<scope>test</scope>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-h2</artifactId>
</dependency>
<dependency>
<groupId>org.mindrot</groupId>
<artifactId>jbcrypt</artifactId>
<version>0.4</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-validator</artifactId>
<version>${jbcrypt.version}</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.12</version>
<version>${reflections.version}</version>
</dependency>
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.8.2</version>
<version>${java-jwt.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.34</version>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -101,11 +95,16 @@
<dependency>
<groupId>com.github.slugify</groupId>
<artifactId>slugify</artifactId>
<version>2.4</version>
<version>${slugify.version}</version>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-orm-panache</artifactId>
<artifactId>quarkus-test-h2</artifactId>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ApplicationConfiguration {
@Produces
@Singleton
public Slugify slugify() {
return new Slugify();
return Slugify.builder().build();
}

@Singleton
Expand Down

0 comments on commit baabe92

Please sign in to comment.