Skip to content

Commit

Permalink
Jsonnet engine merged into datasonnet (#109)
Browse files Browse the repository at this point in the history
* SJsonnet merged into the source code
* Random and new Datetime libraries added
  • Loading branch information
javaduke authored Nov 25, 2022
1 parent 0112f96 commit 2d1fbbc
Show file tree
Hide file tree
Showing 38 changed files with 4,624 additions and 519 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ tmp
.classpath
.factorypath
.project
build
4 changes: 2 additions & 2 deletions .settings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
Copyright 2019-2020 the original author or authors.
Copyright 2019-2022 the original author or authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -19,7 +19,7 @@
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>ms3-nexus</id>
<id>portx</id>
<username>${env.REPO_USER}</username>
<password>${env.REPO_PASSWORD}</password>
</server>
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

![Maven Central](https://img.shields.io/maven-central/v/com.datasonnet/datasonnet-mapper)

##Documentation:
https://datasonnet.github.io/datasonnet-mapper/datasonnet/latest/index.html

## Build and Versioning notes

The version in the POM should always be a SNAPSHOT version. That is the version that will be published
Expand Down
6 changes: 4 additions & 2 deletions antora-playbook.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2019-2020 the original author or authors.
# Copyright 2019-2022 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -16,7 +16,7 @@

site:
title: DataSonnet Mapper Documentation
url: https://MS3Inc.github.io/datasonnet-mapper
url: https://datasonnet.github.io/datasonnet-mapper
start_page: datasonnet::index.adoc
content:
sources:
Expand All @@ -34,3 +34,5 @@ ui:
contents: |
static_files: [ .nojekyll ]
- path: .nojekyll
- path: partials/header-content.hbs
contents: ./docs/supplemental-ui/partials/header-content.hbs
11 changes: 7 additions & 4 deletions docs/modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@
** xref:libraries-crypto.adoc[Crypto]
** xref:libraries-datetime.adoc[Datetime]
** xref:libraries-jsonpath.adoc[JsonPath]
** xref:libraries-localdatetime.adoc[LocalDateTime]
** xref:libraries-datetime.adoc[DateTime]
** xref:libraries-zoneddatetime.adoc[ZonedDateTime] _(Deprecated)_
** xref:libraries-localdatetime.adoc[LocalDateTime] _(Deprecated)_
** xref:libraries-math.adoc[Math]
** xref:libraries-numbers.adoc[Numbers]
** xref:libraries-objects.adoc[Objects]
** xref:libraries-regex.adoc[Regex]
** xref:libraries-strings.adoc[Strings]
** xref:libraries-url.adoc[Url]
* xref:cli.adoc[Command Line Interface]
** xref:jar-cli.adoc[Using the CLI via a Jar]
** xref:docker-cli.adoc[Using the CLI via Docker]
** xref:libraries-random.adoc[Random]
// * xref:cli.adoc[Command Line Interface]
// ** xref:jar-cli.adoc[Using the CLI via a Jar]
// ** xref:docker-cli.adoc[Using the CLI via Docker]
* xref:cookbook.adoc[Cookbook]
* xref:jar-lib.adoc[Using DataSonnet Programmatically]
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/jar-lib.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DataSonnet is distributed as a JAR which contains all necessary classes and depe
</dependency>
----------

where `${datasonnet.version}` is the latest released version (currently 1.0.4).
where `${datasonnet.version}` is the latest released version.

The simplest scenario is mapping from JSON to JSON with no additional variables:

Expand Down
Loading

0 comments on commit 2d1fbbc

Please sign in to comment.