Skip to content

Commit

Permalink
upgrade to vertx 4.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zyclonite committed Jan 31, 2024
1 parent bb9ab8b commit 485ce77
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup jdk
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
cache: maven
- name: build and test
run: mvn -B verify
- name: codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v3

deploy:
name: Deploy to OSSRH
Expand All @@ -31,9 +31,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup jdk
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 11
distribution: temurin
Expand Down
4 changes: 2 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ To use the Vert.x Cron-Utils, add the following dependency to the _dependencies_
<dependency>
<groupId>com.noenv</groupId>
<artifactId>vertx-cronutils</artifactId>
<version>4.5.1</version>
<version>4.5.2</version>
</dependency>
----

* Gradle (in your `build.gradle` file):

[source,groovy,subs="+attributes"]
----
compile 'com.noenv:vertx-cronutils:4.5.1'
compile 'com.noenv:vertx-cronutils:4.5.2'
----

== Creating a cron scheduler
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.noenv</groupId>
<artifactId>vertx-cronutils</artifactId>
<version>4.5.2-SNAPSHOT</version>
<version>4.5.2</version>

<parent>
<groupId>io.vertx</groupId>
Expand All @@ -18,7 +18,7 @@
<url>http://github.com/NoEnv/vertx-cronutils</url>

<properties>
<stack.version>4.5.2-SNAPSHOT</stack.version>
<stack.version>4.5.2</stack.version>
<cronutils.version>9.2.1</cronutils.version>
</properties>

Expand Down

0 comments on commit 485ce77

Please sign in to comment.