Skip to content

Commit

Permalink
version tweak
Browse files Browse the repository at this point in the history
disable upgrade job for now since kotlin support in openrewrite is unclear
  • Loading branch information
evanchooly committed Dec 15, 2024
1 parent 1470cc1 commit a79ed82
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/upgrades.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
jobs:
Upgrade:
runs-on: ubuntu-latest
if: false
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -21,4 +22,6 @@ jobs:
distribution: 'zulu'
- name: Build with Tests
run: |
mvn -U org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.recipeArtifactCoordinates=dev.morphia.morphia:rewrite:3.0.0-SNAPSHOT -Drewrite.activeRecipes=dev.morphia.UpgradeToMorphia30
mvn -e -X -U org.openrewrite.maven:rewrite-maven-plugin:run \
-Drewrite.recipeArtifactCoordinates=dev.morphia.morphia:rewrite:3.0.0-SNAPSHOT \
-Drewrite.activeRecipes=dev.morphia.UpgradeToMorphia30
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<artifactId>kotlin-maven-plugin</artifactId>
<version>${kotlin.version}</version>
<configuration>
<jvmTarget>11</jvmTarget>
<jvmTarget>17</jvmTarget>
<compilerPlugins>
<compilerPlugin>ksp</compilerPlugin>
</compilerPlugins>
Expand Down Expand Up @@ -114,8 +114,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.13.0</version>
<configuration>
<source>11</source>
<target>11</target>
<source>17</source>
<target>17</target>
</configuration>
<executions>
<execution>
Expand Down Expand Up @@ -557,7 +557,7 @@
<jacoco.version>0.8.5</jacoco.version>
<jaxb.version>2.3.1</jaxb.version>
<jsoup.version>1.15.4</jsoup.version>
<kotlin.version>1.9.23</kotlin.version>
<kotlin.version>1.9.25</kotlin.version>
<logback.version>1.5.12</logback.version>
<morphia.version>2.3.9</morphia.version>
<okhttp.version>4.12.0</okhttp.version>
Expand Down

0 comments on commit a79ed82

Please sign in to comment.