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

version changes for TCK service release 3.1.4 #1184

Merged
merged 3 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
14 changes: 12 additions & 2 deletions jaxrs-tck-docs/tckbundle.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash -xe

# Copyright (c) 2022 Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2023 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 @@ -23,7 +23,7 @@ cd $WORKSPACE
export VERSION="$2"

if [ -z "$VERSION" ]; then
export VERSION="3.1.3"
export VERSION="3.1.4"
fi

if [[ "$1" == "epl" || "$1" == "EPL" ]]; then
Expand Down Expand Up @@ -59,9 +59,19 @@ cd $WORKSPACE/bundle
if [[ "$1" == "epl" || "$1" == "EPL" ]]; then
cp $WORKSPACE/LICENSE.md $WORKSPACE/bundle/LICENSE.md
cp $WORKSPACE/jaxrs-tck/pom.epl.xml $WORKSPACE/bundle/restful-ws-tck-"$VERSION".pom
cd $WORKSPACE/jaxrs-tck/target/
mkdir -p $WORKSPACE/jaxrs-tck/target/META-INF
cp $WORKSPACE/jaxrs-tck-docs/LICENSE.md $WORKSPACE/jaxrs-tck/target/META-INF/
jar uf restful-ws-tck-"$VERSION".jar META-INF/LICENSE.md
cd $WORKSPACE/bundle
zip -r restful-ws-tck-"$VERSION".zip *
else
cp $WORKSPACE/jaxrs-tck-docs/LICENSE_EFTL.md $WORKSPACE/bundle/LICENSE.md
cp $WORKSPACE/jaxrs-tck/pom.xml $WORKSPACE/bundle/jakarta-restful-ws-tck-"$VERSION".pom
cd $WORKSPACE/jaxrs-tck/target/
mkdir -p $WORKSPACE/jaxrs-tck/target/META-INF
cp $WORKSPACE/jaxrs-tck-docs/LICENSE_EFTL.md $WORKSPACE/jaxrs-tck/target/META-INF/LICENSE.md
jar uf jakarta-restful-ws-tck-"$VERSION".jar META-INF/LICENSE.md
cd $WORKSPACE/bundle
zip -r jakarta-restful-ws-tck-"$VERSION".zip *
fi
2 changes: 1 addition & 1 deletion jaxrs-tck-docs/userguide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<groupId>org.glassfish</groupId>
<artifactId>tck_jaxrs</artifactId>
<packaging>pom</packaging>
<version>3.1.3</version>
<version>3.1.4</version>
<name>Eclipse Foundation Technology Compatibility Kit User's Guide for Jakarta RESTful Web Services for Jakarta EE, Release 3.1</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion jaxrs-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<name>Jakarta RESTful WS TCK</name>
<description>Technology Compatibility Kit for Jakarta RESTful Web Services</description>
<url>https://github.com/jakartaee/rest</url>
<version>3.1.3</version>
<version>3.1.4</version>

<parent>
<groupId>jakarta.ws.rs</groupId>
Expand Down
2 changes: 1 addition & 1 deletion jersey-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-tck</artifactId>
<version>3.1.3</version>
<version>3.1.4</version>
<packaging>jar</packaging>

<parent>
Expand Down