Skip to content

Commit

Permalink
fess-parent 15.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
marevol committed Feb 1, 2024
1 parent ff340b2 commit 6b49169
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
java-version: '17'
java-version: '21'
distribution: 'temurin'
- uses: actions/cache@v1
with:
Expand Down
18 changes: 9 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<artifactId>fess-ds-json</artifactId>
<packaging>jar</packaging>
<name>JSON Data Store</name>
<version>14.12.0-SNAPSHOT</version>
<version>15.0.0-SNAPSHOT</version>
<scm>
<connection>scm:git:git@github.com:codelibs/fess-ds-json.git</connection>
<developerConnection>scm:git:git@github.com:codelibs/fess-ds-json.git</developerConnection>
Expand All @@ -13,7 +13,7 @@
<parent>
<groupId>org.codelibs.fess</groupId>
<artifactId>fess-parent</artifactId>
<version>14.12.0-SNAPSHOT</version>
<version>15.0.0-SNAPSHOT</version>
<relativePath />
</parent>
<build>
Expand Down Expand Up @@ -51,15 +51,15 @@
</repositories>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>${javax.annotation.api.version}</version>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<version>${jakarta.annotation.api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>${javax.servlet.api.version}</version>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${jakarta.servlet.api.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -102,7 +102,7 @@
</dependency>
<dependency>
<groupId>org.dbflute.utflute</groupId>
<artifactId>utflute-lastaflute</artifactId>
<artifactId>utflute-lastaflute-jakarta</artifactId>
<version>${utflute.version}</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 6b49169

Please sign in to comment.