Skip to content

Commit 2561bea

Browse files
committed
Initial version of TCK tests unmodified from jakartaee-tck repo
1 parent c84e585 commit 2561bea

File tree

274 files changed

+21000
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

274 files changed

+21000
-0
lines changed

tck/pom.xml

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Copyright (c) 2020 Oracle and/or its affiliates. All rights reserved.
5+
6+
This program and the accompanying materials are made available under the
7+
terms of the Eclipse Public License v. 2.0, which is available at
8+
http://www.eclipse.org/legal/epl-2.0.
9+
10+
This Source Code may also be made available under the following Secondary
11+
Licenses when the conditions for such availability set forth in the
12+
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
13+
version 2 with the GNU Classpath Exception, which is available at
14+
https://www.gnu.org/software/classpath/license.html.
15+
16+
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
17+
18+
-->
19+
<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">
20+
<modelVersion>4.0.0</modelVersion>
21+
22+
<parent>
23+
<groupId>org.eclipse.ee4j</groupId>
24+
<artifactId>project</artifactId>
25+
<version>1.0.6</version>
26+
</parent>
27+
28+
<groupId>jakarta.json.bind</groupId>
29+
<artifactId>jakarta.json.bind-tck</artifactId>
30+
<version>2.0.0-SNAPSHOT</version>
31+
<packaging>jar</packaging>
32+
33+
<name>JSON-B TCK</name>
34+
<description>Jakarta JSON Binding TCK Tests</description>
35+
36+
<licenses>
37+
<license>
38+
<name>Eclipse Public License 2.0</name>
39+
<url>https://projects.eclipse.org/license/epl-2.0</url>
40+
<distribution>repo</distribution>
41+
</license>
42+
<license>
43+
<name>GNU General Public License, version 2 with the GNU Classpath Exception</name>
44+
<url>https://projects.eclipse.org/license/secondary-gpl-2.0-cp</url>
45+
<distribution>repo</distribution>
46+
</license>
47+
</licenses>
48+
49+
<properties>
50+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51+
<jakarta.json.version>2.0.0-RC1</jakarta.json.version>
52+
</properties>
53+
54+
<dependencies>
55+
<dependency>
56+
<groupId>jakarta.json</groupId>
57+
<artifactId>jakarta.json-api</artifactId>
58+
<version>${jakarta.json.version}</version>
59+
<scope>provided</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>junit</groupId>
63+
<artifactId>junit</artifactId>
64+
<version>4.12</version>
65+
<scope>compile</scope>
66+
</dependency>
67+
</dependencies>
68+
</project>

0 commit comments

Comments
 (0)