Skip to content

Commit

Permalink
Merge pull request #57 from johnwalker/travis
Browse files Browse the repository at this point in the history
Update README to specify JDK8 or greater, and update .travis.yml to use JDK8
  • Loading branch information
SalusaSecondus authored Nov 9, 2018
2 parents ee5fb8a + b3d3e36 commit cda6411
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: java
jdk:
- openjdk7
- oraclejdk7
- openjdk8
- oraclejdk8
install: /bin/true
script: mvn install --quiet -Dgpg.skip=true -DskipTests=true

11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ For more advanced use cases where tighter control over the encryption and signin

## Getting Started

### Required Prerequisites
To use this SDK you must have:

* **A Java 8 development environment**

If you do not have one, go to [Java SE Downloads](https://www.oracle.com/technetwork/java/javase/downloads/index.html) on the Oracle website, then download and install the Java SE Development Kit (JDK). Java 8 or higher is recommended.

**Note:** If you use the Oracle JDK, you must also download and install the [Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files](http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html).

### Get Started

Suppose you have created ([sample code][createtable]) a DynamoDB table "MyStore", and want to store some Book objects. The security requirement involves classifying the attributes Title and Authors as sensitive information. This is how the Book class may look like:

```java
Expand Down

0 comments on commit cda6411

Please sign in to comment.