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
23 changes: 1 addition & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,32 +65,11 @@
.button.secondary:hover {
background-color: #7f8c8d;
}
.nav {
background-color: #34495e;
padding: 15px;
border-radius: 5px;
margin-bottom: 20px;
}
.nav a {
color: white;
text-decoration: none;
margin-right: 20px;
}
.nav a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>java.util.json Backport for JDK 21+</h1>

<div class="nav">
<a href="https://github.com/simbo1905/java.util.json.Java21">GitHub Repository</a>
<a href="https://github.com/simbo1905/java.util.json.Java21/wiki">Wiki</a>
<a href="Towards%20a%20JSON%20API%20for%20the%20JDK.pdf">Original Proposal (PDF)</a>
<a href="https://github.com/openjdk/jdk-sandbox/tree/json">OpenJDK Sandbox</a>
</div>

<div class="highlight">
<strong>Early Access:</strong> This is an unofficial backport of the experimental <code>java.util.json</code> API from OpenJDK sandbox,
Expand Down Expand Up @@ -150,8 +129,8 @@ <h2>Record Mapping Example</h2>

<h2>Resources</h2>
<a href="https://github.com/simbo1905/java.util.json.Java21" class="button">View on GitHub</a>
<a href="https://github.com/simbo1905/java.util.json.Java21/wiki" class="button secondary">Documentation Wiki</a>
<a href="Towards%20a%20JSON%20API%20for%20the%20JDK.pdf" class="button secondary">Original Proposal</a>
<a href="https://github.com/openjdk/jdk-sandbox/tree/json" class="button secondary">OpenJDK Sandbox</a>

<h2>Status</h2>
<p>This backport is based on OpenJDK sandbox commit <a href="https://github.com/openjdk/jdk-sandbox/commit/d22dc2ba89789041c3908cdaafadc1dcf8882ebf">d22dc2ba8</a>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@

<groupId>jdk-sandbox</groupId>
<artifactId>json-experimental</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>java.util.json Backport for JDK 21+</name>
<description>Early access to future java.util.json API - tracking OpenJDK sandbox development</description>
<url>https://simbo1905.github.io/java.util.json.Java21/</url>

<licenses>
<license>
Expand Down