Skip to content

Commit

Permalink
feat(SNSUNI-66): update dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pjazdzyk committed Dec 10, 2023
1 parent 1fa87fc commit 2a225a6
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mult-deploy-to-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions/[email protected]
with:
distribution: "zulu"
java-version: 21
java-version: 17
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,8 @@ def t3 = Temperature.ofKelvins(303.15) // =30 oC
def t4 = t1 + t2 // Temperature{30.0°C}
def t5 = t1 - t2 // Temperature{10.0°C}
def t6 = t1 + 15.5 // Temperature{35.5°C}
// Adding & subtracting: Different units of the same quantity, resolving to unit type of the first addend.
// Adding & subtracting: Different units of the same quantity,
// resolving to a first addend unit type.
def t7 = t1 + t3 // Temperature{50.0°C}
def t8 = t1 - t3 // Temperature{-10.0°C}
// Multiply
Expand Down Expand Up @@ -647,7 +648,8 @@ val t3 = Temperature.ofKelvins(303.15) // =30 oC
// Adding & subtracting: The same unit
val t4 = t1 + t2 // Temperature{30.0°C}
val t5 = t1 - t2 // Temperature{10.0°C}
// Adding & subtracting: Different units of the same quantity, resolving to a unit type of the first addend.
// Adding & subtracting: Different units of the same quantity,
// resolving to a first addend unit type.
val t7 = t1 + t3 // Temperature{50.0°C}
val t8 = t1 - t3 // Temperature{-10.0°C}
// Multiply
Expand Down
42 changes: 21 additions & 21 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,22 @@
</modules>

<name>Unitility</name>
<url>https://github.com/pjazdzyk/unitility</url>
<developers>
<developer>
<name>Piotr Jażdżyk</name>
<email>[email protected]</email>
<organization>SYNERSET</organization>
<organizationUrl>https://www.synerset.com</organizationUrl>
</developer>
</developers>
<description>
The Physics Units of Measure Library for Java.
Unitility provides value objects that combine numerical values with their corresponding units, allowing
developers to easily perform accurate and efficient conversions between different units.
With a wide range of value objects that represent commonly used physical quantities this solution is built
using plain Java for optimal speed and lightweight functionality.
</description>
<url>https://github.com/pjazdzyk/unitility</url>

<licenses>
<license>
Expand All @@ -34,37 +42,29 @@
</license>
</licenses>

<developers>
<developer>
<name>Piotr Jażdżyk</name>
<email>[email protected]</email>
<organization>SYNERSET</organization>
<organizationUrl>https://www.synerset.com</organizationUrl>
</developer>
</developers>

<properties>
<!-- MODULES VERSION -->
<project.version>0.0.1-SNAPSHOT</project.version>
<project.version>2.0.0</project.version>
<!-- Maven Properties -->
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Test dependencies versions -->
<jacoco.version>0.8.9</jacoco.version>
<junit-jupiter.version>5.9.2</junit-jupiter.version>
<jacoco.version>0.8.11</jacoco.version>
<junit-jupiter.version>5.10.1</junit-jupiter.version>
<assertj-core.version>3.24.2</assertj-core.version>
<!-- Framework versions -->
<jackson-databind.version>2.15.2</jackson-databind.version>
<spring-boot-starter-web.version>3.1.4</spring-boot-starter-web.version>
<quarkus-version>3.4.0</quarkus-version>
<jandex-maven-plugin.version>3.1.5</jandex-maven-plugin.version>
<jackson-databind.version>2.16.0</jackson-databind.version>
<spring-boot-starter-web.version>3.2.0</spring-boot-starter-web.version>
<quarkus-version>3.6.1</quarkus-version>
<jandex-maven-plugin.version>3.1.6</jandex-maven-plugin.version>
<!-- Plugin versions -->
<sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version>
<sonar-maven-plugin.version>3.10.0.2594</sonar-maven-plugin.version>
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
<maven-javadoc-plugin.version>3.4.1</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.3.0</maven-source-plugin.version>
<nexus-staging-maven-plugin.version>1.6.13</nexus-staging-maven-plugin.version>
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
<!-- Sonar Cloud Properties-->
<sonar.organization>synerset</sonar.organization>
<sonar.projectKey>pjazdzyk_unitility</sonar.projectKey>
Expand All @@ -74,7 +74,6 @@
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
<sonar.language>java</sonar.language>
<sonar.binaries>target/classes</sonar.binaries>
<maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -170,6 +169,7 @@
<artifactId>flatten-maven-plugin</artifactId>
<version>${flatten-maven-plugin.version}</version>
<configuration>
<flattenMode>oss</flattenMode>
</configuration>
<executions>
<!-- enable flattening -->
Expand Down

0 comments on commit 2a225a6

Please sign in to comment.