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

Wrong artifacts and license in TCK user guide #731

Merged
merged 1 commit into from
May 7, 2024
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
5 changes: 4 additions & 1 deletion tck-dist/src/main/asciidoc/data-tck-reference-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
:JavaVersion1: 17
:JavaVersion2: 21

:TCKProcess: 1.3
:license: Eclipse Foundation Technology Compatibility Kit License - v1.1
:licenseURL: https://www.eclipse.org/legal/tck.php

:TCKProcess: 1.4.1
:TCKProcessDoc: https://jakarta.ee/committees/specification/tckprocess

:last-update-label!:
Expand Down
2 changes: 1 addition & 1 deletion tck-dist/src/main/asciidoc/sections/01preface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The specification describes the job specification language, Java programming mod

=== Licensing

The {APILongName} TCK is provided under the https://www.eclipse.org/legal/tck.php[*Eclipse Foundation Technology Compatibility Kit License - v 1.0*].
The {APILongName} TCK is provided under the {licenseURL}[*{license}*].

=== Who Should Use This Guide

Expand Down
16 changes: 9 additions & 7 deletions tck-dist/src/main/starter/ee-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
<!-- General properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.testRelease>17</maven.compiler.testRelease>

<!-- Dependency and Plugin Versions -->

<!-- Default - use local snapshot - can be overwritten by runner -->
<jakarta.data.version>1.0.0-SNAPSHOT</jakarta.data.version>

<arquillian.version>1.7.0.Alpha13</arquillian.version>
Expand Down Expand Up @@ -85,13 +87,13 @@
<dependencies>
<!-- The TCK -->
<dependency>
<groupId>jakarta-data</groupId>
<groupId>jakarta.data</groupId>
<artifactId>jakarta.data-tck</artifactId>
<version>${jakarta.data.tck.version}</version>
<version>${jakarta.data.version}</version>
</dependency>
<!-- The API -->
<dependency>
<groupId>jakarta-data</groupId>
<groupId>jakarta.data</groupId>
<artifactId>jakarta.data-api</artifactId>
<version>${jakarta.data.version}</version>
</dependency>
Expand All @@ -116,12 +118,12 @@
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0</version>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>4.0</version>
<version>4.0.1</version>
</dependency>
</dependencies>
<!-- end::testClientDep[] -->
Expand Down
16 changes: 9 additions & 7 deletions tck-dist/src/main/starter/se-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
<!-- General properties -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.release>17</maven.compiler.release>
<maven.compiler.testRelease>17</maven.compiler.testRelease>

<!-- Dependency and Plugin Versions -->

<!-- Default - use local snapshot - can be overwritten by runner -->
<jakarta.data.version>1.0.0-SNAPSHOT</jakarta.data.version>

<arquillian.version>1.7.0.Alpha13</arquillian.version>
Expand Down Expand Up @@ -75,13 +77,13 @@
<dependencies>
<!-- The TCK -->
<dependency>
<groupId>jakarta-data</groupId>
<groupId>jakarta.data</groupId>
<artifactId>jakarta.data-tck</artifactId>
<version>${jakarta.data.tck.version}</version>
<version>${jakarta.data.version}</version>
</dependency>
<!-- The API -->
<dependency>
<groupId>jakarta-data</groupId>
<groupId>jakarta.data</groupId>
<artifactId>jakarta.data-api</artifactId>
<version>${jakarta.data.version}</version>
</dependency>
Expand Down Expand Up @@ -112,12 +114,12 @@
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0</version>
<version>6.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<version>4.0</version>
<version>4.0.1</version>
</dependency>
</dependencies>
<!-- end::runtimeDep[] -->
Expand Down