Skip to content

Commit cda6411

Browse files
Merge pull request #57 from johnwalker/travis
Update README to specify JDK8 or greater, and update .travis.yml to use JDK8
2 parents ee5fb8a + b3d3e36 commit cda6411

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: java
22
jdk:
3-
- openjdk7
4-
- oraclejdk7
3+
- openjdk8
4+
- oraclejdk8
55
install: /bin/true
66
script: mvn install --quiet -Dgpg.skip=true -DskipTests=true
77

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ For more advanced use cases where tighter control over the encryption and signin
1111

1212
## Getting Started
1313

14+
### Required Prerequisites
15+
To use this SDK you must have:
16+
17+
* **A Java 8 development environment**
18+
19+
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.
20+
21+
**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).
22+
23+
### Get Started
24+
1425
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:
1526

1627
```java

0 commit comments

Comments
 (0)