Skip to content

Commit

Permalink
SNSUNI-100: Reduced jandex-index-plugin version to 3.1.8, as the 3.2.…
Browse files Browse the repository at this point in the history
…0 have some compatibility issues while reading the index in Quarkus 3.11.0 (despite that 3.2.0 is in their BOM).
  • Loading branch information
pjazdzyk committed May 26, 2024
1 parent 9ce284f commit a4b43e8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ features, such as overloaded operators.

Copy the Maven dependency provided below to your pom.xml file, and you are ready to go. For other package managers,
check maven central repository:
[UNITILITY](https://search.maven.org/artifact/com.synerset/unitility/2.4.0/jar?eh=).
[UNITILITY](https://search.maven.org/artifact/com.synerset/unitility/2.4.1/jar?eh=).

```xml
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-core</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
If you use frameworks to develop web applications, it is recommended to use Unitility extension modules,
Expand All @@ -79,15 +79,15 @@ Extension for the Spring Boot framework:
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-spring</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
Extension for the Quarkus framework:
```xml
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-quarkus</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
Extensions include CORE module, so you don't have to put it separate in your pom.
Expand Down Expand Up @@ -481,7 +481,7 @@ deserialization back to Java objects. To include this module in your project, us
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-jackson</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
PhysicalQuantity JSON structure for valid serialization / deserialization has been defined as in the following example:
Expand All @@ -506,7 +506,7 @@ add the following dependency:
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-spring</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
Adding Spring module to the project will automatically:
Expand Down Expand Up @@ -546,7 +546,7 @@ add following dependency:
<dependency>
<groupId>com.synerset</groupId>
<artifactId>unitility-quarkus</artifactId>
<version>2.4.0</version>
<version>2.4.1</version>
</dependency>
```
Adding Quarkus module to the project will automatically:
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

<properties>
<!-- MODULES VERSION -->
<project.version>2.4.0</project.version>
<project.version>2.4.1</project.version>

<!-- Maven Properties -->
<maven.compiler.source>17</maven.compiler.source>
Expand Down Expand Up @@ -73,7 +73,7 @@
<maven-source-plugin.version>3.3.1</maven-source-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version>
<jandex-maven-plugin.version>3.2.0</jandex-maven-plugin.version>
<jandex-maven-plugin.version>3.1.8</jandex-maven-plugin.version>

<!-- Sonar Cloud Properties-->
<sonar.organization>synerset</sonar.organization>
Expand Down

0 comments on commit a4b43e8

Please sign in to comment.