Skip to content

Commit

Permalink
software.amazon.ion Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Therapon Skoteiniotis committed Sep 25, 2019
1 parent 00b62fd commit a646e6e
Show file tree
Hide file tree
Showing 372 changed files with 2,551 additions and 2,551 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
A Java implementation of the [Ion data notation](http://amzn.github.io/ion-docs).

[![Build Status](https://travis-ci.org/amzn/ion-java.svg?branch=master)](https://travis-ci.org/amzn/ion-java)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.amazon.ion/ion-java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.amazon.ion/ion-java)
[![Javadoc](https://javadoc-badge.appspot.com/com.amazon.ion/ion-java.svg?label=javadoc)](http://www.javadoc.io/doc/com.amazon.ion/ion-java)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/software.amazon.ion/ion-java/badge.svg)](https://maven-badges.herokuapp.com/maven-central/software.amazon.ion/ion-java)
[![Javadoc](https://javadoc-badge.appspot.com/software.amazon.ion/ion-java.svg?label=javadoc)](http://www.javadoc.io/doc/software.amazon.ion/ion-java)

## Setup
This repository contains a [git submodule](https://git-scm.com/docs/git-submodule)
Expand Down Expand Up @@ -58,7 +58,7 @@ dependency into your project's `pom.xml`:

```
<dependency>
<groupId>com.amazon.ion</groupId>
<groupId>software.amazon.ion</groupId>
<artifactId>ion-java</artifactId>
<version>1.5.1</version>
</dependency>
Expand All @@ -67,11 +67,11 @@ dependency into your project's `pom.xml`:
#### Legacy group id

Originally ion-java was published using the group id `software.amazon.ion`. Since 1.4.0 the
official groupId was changed to `com.amazon.ion` to be consistent with other Amazon open
official groupId was changed to `software.amazon.ion` to be consistent with other Amazon open
source libraries. We still maintain the legacy group id but strongly encourage users to migrate
to the official one.

## Using the Library
A great way to get started is to use the [Ion cookbook](http://amzn.github.io/ion-docs/cookbook.html).
The [API documentation](http://www.javadoc.io/doc/com.amazon.ion/ion-java) will give a lot
The [API documentation](http://www.javadoc.io/doc/software.amazon.ion/ion-java) will give a lot
of detailed information about how to use the library.
20 changes: 10 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<project>

<modelVersion>4.0.0</modelVersion>
<groupId>com.amazon.ion</groupId>
<groupId>software.amazon.ion</groupId>
<artifactId>ion-java</artifactId>
<version>1.5.1</version>
<packaging>bundle</packaging>
Expand Down Expand Up @@ -136,16 +136,16 @@
<configuration>
<instructions>
<Export-Package>
!com.amazon.ion.apps.*,
!com.amazon.ion.impl.*,
com.amazon.ion.*,
!software.amazon.ion.apps.*,
!software.amazon.ion.impl.*,
software.amazon.ion.*,
</Export-Package>
<!-- This can be used to retrieve the compiled JarInfo. -->
<Main-Class>com.amazon.ion.impl._Private_CommandLine</Main-Class>
<Main-Class>software.amazon.ion.impl._Private_CommandLine</Main-Class>
<!-- Add these properties to the manifest so they may be retrieved at runtime. -->
<Ion-Java-Build-Time>${build.time}</Ion-Java-Build-Time>
<Ion-Java-Project-Version>${project.version}</Ion-Java-Project-Version>
<Automatic-Module-Name>com.amazon.ion</Automatic-Module-Name>
<Automatic-Module-Name>software.amazon.ion</Automatic-Module-Name>
</instructions>
</configuration>
</plugin>
Expand Down Expand Up @@ -217,11 +217,11 @@
<reportSets>
<reportSet>
<configuration>
<excludePackageNames>com.amazon.ion.apps:com.amazon.ion.impl</excludePackageNames>
<excludePackageNames>software.amazon.ion.apps:software.amazon.ion.impl</excludePackageNames>
<sourceFileExcludes>
<exclude>**/*Private*</exclude>
</sourceFileExcludes>
<overview>${project.basedir}/src/com/amazon/ion/overview.html</overview>
<overview>${project.basedir}/src/software.amazon.ion/overview.html</overview>
<doctitle>Amazon Ion Java ${project.version} API Reference</doctitle>
<windowtitle>Ion Java ${project.version}</windowtitle>
<header>Amazon Ion Java ${project.version} API Reference</header>
Expand Down Expand Up @@ -290,11 +290,11 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.10.3</version>
<configuration>
<excludePackageNames>com.amazon.ion.apps:com.amazon.ion.impl</excludePackageNames>
<excludePackageNames>software.amazon.ion.apps:software.amazon.ion.impl</excludePackageNames>
<sourceFileExcludes>
<exclude>**/*Private*</exclude>
</sourceFileExcludes>
<overview>${project.basedir}/src/com/amazon/ion/overview.html</overview>
<overview>${project.basedir}/src/software.amazon.ion/overview.html</overview>
<doctitle>Amazon Ion Java ${project.version} API Reference</doctitle>
<windowtitle>Ion Java ${project.version}</windowtitle>
<header>Amazon Ion Java ${project.version} API Reference</header>
Expand Down
51 changes: 0 additions & 51 deletions src/com/amazon/ion/impl/bin/package-info.java

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* An error caused by adding an {@link IonValue} into a container when it's
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.math.BigDecimal;
import java.math.BigInteger;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* An error caused by a symbol not containing at least one character for
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* Indicates the smallest-possible Java type of an Ion {@code int} value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;


/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.IOException;
import java.io.OutputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.IOException;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;



Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import com.amazon.ion.system.IonSystemBuilder;
import com.amazon.ion.system.SimpleCatalog;
import software.amazon.ion.system.IonSystemBuilder;
import software.amazon.ion.system.SimpleCatalog;


/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.Reader;
import java.nio.charset.Charset;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.util.Collection;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.IOException;
import java.io.OutputStream;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.math.BigDecimal;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.IOException;
import java.util.IdentityHashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;
import java.math.BigDecimal;


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.math.BigInteger;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.util.Collection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.File;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.io.InputStream;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* An {@link IonCatalog} that can be updated.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* The Ion <code>null</code> value, also known as <code>null.null</code>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* The IonNumber interface is a fore runner of a common base for the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import com.amazon.ion.facet.Faceted;
import software.amazon.ion.facet.Faceted;
import java.io.Closeable;
import java.io.IOException;
import java.math.BigDecimal;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.util.Collection;
import java.util.Iterator;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.util.Collection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

/**
* An Ion <code>string</code> value.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* permissions and limitations under the License.
*/

package com.amazon.ion;
package software.amazon.ion;

import java.util.Map;

Expand Down
Loading

0 comments on commit a646e6e

Please sign in to comment.