Skip to content

Commit 72d5c28

Browse files
authored
Minor changes to github actions (#532)
Minor changes to github actions Signed-off-by: David Kral <[email protected]>
1 parent 2d49850 commit 72d5c28

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/maven.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2021 Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2021, 2022 Oracle and/or its affiliates. All rights reserved.
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Eclipse Public License v. 2.0 which is available at
@@ -53,6 +53,6 @@ jobs:
5353
distribution: 'adopt'
5454
java-version: ${{ matrix.java_version }}
5555
- name: Yasson tests
56-
run: mvn -U -C -Pstaging verify
56+
run: mvn -U -C -Dmaven.javadoc.skip=true -Pstaging verify
5757
- name: JSONB-API TCK
5858
run: cd yasson-tck && mvn -U -B test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@ Something not working right? Have an idea for an enhancement? Get in touch with
4545

4646
## Links
4747
- Yasson home page: https://projects.eclipse.org/projects/ee4j.yasson
48-
- JSON-B official web site: http://json-b.net
48+
- JSON-B official web site: https://eclipse-ee4j.github.io/jsonb-api/
4949
- JSON-B API & spec project: https://github.com/eclipse-ee4j/jsonb-api
5050
- JSR-367 page on JCP site: https://jcp.org/en/jsr/detail?id=367

pom.xml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2016, 2021 Oracle and/or its affiliates. All rights reserved.
4+
Copyright (c) 2016, 2022 Oracle and/or its affiliates. All rights reserved.
55
66
This program and the accompanying materials are made available under the
77
terms of the Eclipse Public License v. 2.0 which is available at
@@ -462,7 +462,7 @@
462462
<plugin>
463463
<groupId>org.apache.felix</groupId>
464464
<artifactId>maven-bundle-plugin</artifactId>
465-
<version>3.5.0</version>
465+
<version>5.1.1</version>
466466
<executions>
467467
<execution>
468468
<id>osgi-bundle</id>
@@ -471,13 +471,14 @@
471471
<goal>manifest</goal>
472472
</goals>
473473
<configuration>
474+
<niceManifest>true</niceManifest>
474475
<instructions>
475-
<_failok>true</_failok>
476476
<Bundle-Name>${project.name}</Bundle-Name>
477477
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
478478
<Bundle-Version>${project.version}</Bundle-Version>
479479
<Export-Package>org.eclipse.yasson;version=${project.version}</Export-Package>
480480
<Private-Package>org.eclipse.yasson.*;version=${project.version}</Private-Package>
481+
<Multi-Release>true</Multi-Release>
481482
<Import-Package>
482483
jakarta.enterprise.context.spi;version=!;resolution:="optional",
483484
jakarta.enterprise.inject.spi;version=!;resolution:="optional",

0 commit comments

Comments
 (0)