Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Query Parameter werden validiert #111

Open
wants to merge 36 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c31cac7
Bug: fetch and where with formula join will produce incorrect joins
rPraml Oct 7, 2024
7ff9bf3
Optimized cache handling (QueryCache for findId, use QueryCache befor…
rPraml Oct 7, 2024
869d489
NEW: Feature to disable overwriting generated properties
rPraml Jan 16, 2023
95abfd6
Support for lazy add on BeanList
rPraml Oct 7, 2024
0648235
Tenant support for query plans
rPraml Oct 7, 2024
e0084b1
Tenant partitioned caches could improve cache-hit ratio
rPraml Oct 7, 2024
146e11f
checkUniqueness supports queryCache and skipClean
rPraml Oct 7, 2024
f9680fc
DbJson Support for Dto-Queries
rPraml Oct 7, 2024
1370ec9
NEW: QueryPlanLogger for DB2
rPraml Oct 7, 2024
e8138c8
DDL generation can be invoked separately
rPraml Oct 7, 2024
313d109
NEW: DefaultDbMigration is configurable from properties
rPraml Oct 7, 2024
62ea9ec
NOPR - CustomDeployParser base code
rPraml Aug 10, 2023
9ebb56a
NOPR - make BeanProperty.field public
rPraml Aug 10, 2023
c2f8546
NOPR - Do not throw BeanHasBeenDeleted on PrimaryKeyJoinColumn
rPraml Aug 10, 2023
0d9b320
NOPR - EntityExtension base code
rPraml Aug 10, 2023
971fdc5
NOPR - NEEDS Refactor: ADD: Support for custom metrics
rPraml Aug 10, 2023
53c7723
NOPR - FOCONIS specific notes
rPraml Aug 10, 2023
cbf8dd2
NOPR ADD readonly check on markdirty
rPraml Sep 20, 2023
ff0ee00
FIX: nested NOT_SUPPORTED transaction with an inner REQUIRES transaction
rPraml Dec 8, 2023
2cc2521
Throw specific LengthCheckException instead of DataIntegrityException
Jul 1, 2024
b58c6c9
Transaction API extended with root transaction (#102)
nPraml Jul 3, 2024
5c83c83
NOPR - NEW: MergeBeans function instead of updating existing bean fro…
rPraml Aug 10, 2023
f926a7a
NOPR - NEW: QueryCache support for DTO queries
rPraml Aug 10, 2023
5b14b13
PR #3153 - TEST: TestServerOffline
rPraml Aug 10, 2023
0a3fbcd
NOPR - DEPRECATED: WriteJson allow include identifier
rPraml Aug 10, 2023
ce80ddd
NOPR - additional test for Multi-Tenant-With-Master
rPraml Aug 10, 2023
588d663
ebean-migration FOC Version
nPraml Oct 9, 2024
2104d34
Refactor IsTableManaged
rPraml Oct 9, 2024
fdd6e79
Support for "extraWhere"
rPraml Oct 9, 2024
d45e5cb
update to FOC-version
nPraml Oct 18, 2024
792595f
[maven-release-plugin] prepare release ebean-parent-14.7.0-FOC1
nPraml Oct 18, 2024
bda95a8
[maven-release-plugin] prepare for next development iteration
nPraml Oct 18, 2024
95bae16
fix poms after release
nPraml Oct 18, 2024
8b95caa
erster Entwurf
nPraml Oct 21, 2024
3457cb5
fixes
nPraml Oct 21, 2024
73131b1
test enablen
nPraml Oct 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,17 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: Maven version
run: mvn --version
# - name: Maven single test
# run: mvn --batch-mode clean verify -Dtest="io.ebeaninternal.server.core.DefaultServer_getReferenceTest" -DfailIfNoTests=false
- name: Build with Maven
run: mvn -T 8 clean test
run: mvn -T 8 clean test -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

9 changes: 8 additions & 1 deletion .github/workflows/db2luw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: db2
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-db2.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-db2.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/h2database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: Maven version
run: mvn --version
- name: H2Database
run: mvn -T 8 clean package
run: mvn -T 8 clean package -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

9 changes: 8 additions & 1 deletion .github/workflows/jdk-ea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: Maven version
run: mvn --version
- name: Build with Maven
run: mvn -T 8 test
run: mvn -T 8 test -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

9 changes: 8 additions & 1 deletion .github/workflows/mariadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: mariadb 10.6
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-mariadb.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-mariadb.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
29 changes: 23 additions & 6 deletions .github/workflows/multi-db-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,35 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: h2database
run: mvn clean test
run: mvn clean test -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: postgres
run: mvn clean test -Dprops.file=testconfig/ebean-postgres.properties
run: mvn clean test -Dprops.file=testconfig/ebean-postgres.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: mysql
run: mvn clean test -Dprops.file=testconfig/ebean-mysql.properties
run: mvn clean test -Dprops.file=testconfig/ebean-mysql.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: mariadb
run: mvn clean test -Dprops.file=testconfig/ebean-mariadb.properties
run: mvn clean test -Dprops.file=testconfig/ebean-mariadb.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: yugabyte
run: mvn clean test -Dprops.file=testconfig/ebean-yugabyte.properties
run: mvn clean test -Dprops.file=testconfig/ebean-yugabyte.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: sqlserver
run: mvn clean test -Dprops.file=testconfig/ebean-sqlserver17.properties
run: mvn clean test -Dprops.file=testconfig/ebean-sqlserver17.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: sqlserver19
# run: mvn clean test -Dprops.file=testconfig/ebean-sqlserver19.properties
# - name: db2
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/multi-jdk-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: Maven version
run: mvn --version
- name: Build with Maven
run: mvn package
run: mvn package -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

9 changes: 8 additions & 1 deletion .github/workflows/mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: mysql
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-mysql.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-mysql.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/oracle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: oracle
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-oracle.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-oracle.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: postgres
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-postgres.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-postgres.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/sqlserver-2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: sqlserver 2019 latest
run: mvn clean test -Dprops.file=testconfig/ebean-sqlserver19.properties
run: mvn clean test -Dprops.file=testconfig/ebean-sqlserver19.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/sqlserver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: sqlserver 2017
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-sqlserver17.properties
run: mvn -T 8 clean test -Dprops.file=testconfig/ebean-sqlserver17.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9 changes: 8 additions & 1 deletion .github/workflows/yugabyte.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,12 @@ jobs:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: maven-settings
uses: s4u/maven-settings-action@v2
with:
servers: '[{"id": "github-release", "username": "dummy", "password": "${GITHUB_TOKEN}"}]'
githubServer: false
- name: yugabyte
run: mvn clean test -Dprops.file=testconfig/ebean-yugabyte.properties
run: mvn clean test -Dprops.file=testconfig/ebean-yugabyte.properties -Pgithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33 changes: 17 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@

[![Build](https://github.com/ebean-orm/ebean/actions/workflows/build.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/build.yml)
[![Build](https://github.com/FOCONIS/ebean/actions/workflows/build.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/build.yml)
[![Maven Central : ebean](https://maven-badges.herokuapp.com/maven-central/io.ebean/ebean/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.ebean/ebean)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/ebean-orm/ebean/blob/master/LICENSE)
[![Multi-JDK Build](https://github.com/ebean-orm/ebean/actions/workflows/multi-jdk-build.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/multi-jdk-build.yml)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/FOCONIS/ebean/blob/master/LICENSE)
[![Multi-JDK Build](https://github.com/FOCONIS/ebean/actions/workflows/multi-jdk-build.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/multi-jdk-build.yml)

##### Build with database platforms
[![H2Database](https://github.com/ebean-orm/ebean/actions/workflows/h2database.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/h2database.yml)
[![Postgres](https://github.com/ebean-orm/ebean/actions/workflows/postgres.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/postgres.yml)
[![MySql](https://github.com/ebean-orm/ebean/actions/workflows/mysql.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/mysql.yml)
[![MariaDB](https://github.com/ebean-orm/ebean/actions/workflows/mariadb.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/mariadb.yml)
[![Oracle](https://github.com/ebean-orm/ebean/actions/workflows/oracle.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/oracle.yml)
[![SqlServer](https://github.com/ebean-orm/ebean/actions/workflows/sqlserver.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/sqlserver.yml)
[![DB2 LUW](https://github.com/ebean-orm/ebean/actions/workflows/db2luw.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/db2luw.yml)
[![Yugabyte](https://github.com/ebean-orm/ebean/actions/workflows/yugabyte.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/yugabyte.yml)
[![H2Database](https://github.com/FOCONIS/ebean/actions/workflows/h2database.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/h2database.yml)
[![Postgres](https://github.com/FOCONIS/ebean/actions/workflows/postgres.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/postgres.yml)
[![MySql](https://github.com/FOCONIS/ebean/actions/workflows/mysql.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/mysql.yml)
[![MariaDB](https://github.com/FOCONIS/ebean/actions/workflows/mariadb.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/mariadb.yml)
[![Oracle](https://github.com/FOCONIS/ebean/actions/workflows/oracle.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/oracle.yml)
[![SqlServer](https://github.com/FOCONIS/ebean/actions/workflows/sqlserver.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/sqlserver.yml)
[![DB2 LUW](https://github.com/FOCONIS/ebean/actions/workflows/db2luw.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/db2luw.yml)
[![Yugabyte](https://github.com/FOCONIS/ebean/actions/workflows/yugabyte.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/yugabyte.yml)


##### Build with Java Early Access versions
[![ebean EA](https://github.com/ebean-orm/ebean/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/ebean-orm/ebean/actions/workflows/jdk-ea.yml)
[![datasource EA](https://github.com/ebean-orm/ebean-datasource/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/ebean-orm/ebean-datasource/actions/workflows/jdk-ea.yml)
[![migration EA](https://github.com/ebean-orm/ebean-migration/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/ebean-orm/ebean-migration/actions/workflows/jdk-ea.yml)
[![test-docker EA](https://github.com/ebean-orm/ebean-test-docker/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/ebean-orm/ebean-test-docker/actions/workflows/jdk-ea.yml)
[![ebean-agent EA](https://github.com/ebean-orm/ebean-agent/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/ebean-orm/ebean-agent/actions/workflows/jdk-ea.yml)
[![ebean EA](https://github.com/FOCONIS/ebean/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/FOCONIS/ebean/actions/workflows/jdk-ea.yml)
[![datasource EA](https://github.com/FOCONIS/ebean-datasource/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/FOCONIS/ebean-datasource/actions/workflows/jdk-ea.yml)
[![migration EA](https://github.com/FOCONIS/ebean-migration/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/FOCONIS/ebean-migration/actions/workflows/jdk-ea.yml)
[![test-docker EA](https://github.com/FOCONIS/ebean-test-docker/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/FOCONIS/ebean-test-docker/actions/workflows/jdk-ea.yml)
[![ebean-agent EA](https://github.com/FOCONIS/ebean-agent/actions/workflows/jdk-ea.yml/badge.svg)](https://github.com/FOCONIS/ebean-agent/actions/workflows/jdk-ea.yml)

----------------------

Expand Down
10 changes: 5 additions & 5 deletions composites/ebean-clickhouse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>ebean-parent</artifactId>
<groupId>io.ebean</groupId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand All @@ -17,13 +17,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-api</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-core</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
Expand All @@ -42,13 +42,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-querybean</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-platform-clickhouse</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

</dependencies>
Expand Down
10 changes: 5 additions & 5 deletions composites/ebean-cockroach/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>ebean-parent</artifactId>
<groupId>io.ebean</groupId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand All @@ -17,13 +17,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-api</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-core</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
Expand All @@ -42,13 +42,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-querybean</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-platform-postgres</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

</dependencies>
Expand Down
10 changes: 5 additions & 5 deletions composites/ebean-db2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>ebean-parent</artifactId>
<groupId>io.ebean</groupId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
<relativePath>../..</relativePath>
</parent>

Expand All @@ -17,13 +17,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-api</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-core</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
Expand All @@ -42,13 +42,13 @@
<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-querybean</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

<dependency>
<groupId>io.ebean</groupId>
<artifactId>ebean-platform-db2</artifactId>
<version>14.7.0</version>
<version>14.7.0-FOC2-SNAPSHOT</version>
</dependency>

</dependencies>
Expand Down
Loading
Loading