Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Copyright
run: bash etc/copyright.sh
- name: Checkstyle
run: mvn -B checkstyle:checkstyle -Pstaging
run: mvn -B checkstyle:checkstyle
- name: Yasson install
run: mvn -U -C clean install -Pstaging -DskipTests
run: mvn -U -C clean install -DskipTests
- name: Yasson tests
run: mvn -U -B -C -Dmaven.javadoc.skip=true -Pstaging verify
run: mvn -U -B -C -Dmaven.javadoc.skip=true verify
- name: JSONB-API TCK
run: cd yasson-tck && mvn -U -B test -DargLine="-Djava.locale.providers=COMPAT" -Pstaging
run: cd yasson-tck && mvn -U -B test -DargLine="-Djava.locale.providers=COMPAT"
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--

Copyright (c) 2016, 2024 Oracle and/or its affiliates. All rights reserved.
Copyright (c) 2016, 2026 Oracle and/or its affiliates. All rights reserved.

This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0 which is available at
Expand All @@ -15,17 +15,17 @@

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.eclipse.ee4j</groupId>
<artifactId>project</artifactId>
<version>1.0.9</version>
<version>2.0.2</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse</groupId>
<artifactId>yasson</artifactId>
<version>3.0.4-SNAPSHOT</version>
<version>3.0.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Yasson</name>

Expand Down
11 changes: 1 addition & 10 deletions yasson-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,13 @@

<properties>
<jsonb.tck.version>3.0.0</jsonb.tck.version>
<yasson.version>3.0.4-SNAPSHOT</yasson.version>
<yasson.version>3.0.5-SNAPSHOT</yasson.version>
<jakarta.json.bind.version>3.0.1</jakarta.json.bind.version>
<jakarta.json.version>2.1.3</jakarta.json.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<!-- TODO: Temporarily enable snapshot repository -->
<!-- This can be removed once an official release of jakarta.json.bind-tck is available -->
<repositories>
<repository>
<id>jakarta-snapshots</id>
<url>https://jakarta.oss.sonatype.org/content/repositories/staging/</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>jakarta.json.bind</groupId>
Expand Down
Loading