Skip to content

Commit 63ce40b

Browse files
Updated to JDK 8
1 parent 99f641b commit 63ce40b

File tree

2 files changed

+2
-31
lines changed

2 files changed

+2
-31
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
- Defaults on AES, but supports any block cipher with a 128-bit block size.
1515
- Supports any key sizes that the block cipher supports (e.g. 128/192/256-bit keys for AES)
1616
- Thread-safe
17-
- Compatible with Android API Level 16 (since version 1.2.0)
17+
- Compatible with Android API Level 24 (since version 1.4.0)
1818

1919
## Audits
2020
- [Version 1.0.8 audit by Tim McLean](https://www.chosenplaintext.ca/publications/20161104-siv-mode-report.pdf) (Issues fixed with 1.1.0)

pom.xml

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@
112112
<artifactId>maven-compiler-plugin</artifactId>
113113
<version>3.8.1</version>
114114
<configuration>
115-
<release>7</release>
116-
<testRelease>8</testRelease>
115+
<release>8</release>
117116
<encoding>UTF-8</encoding>
118117
<showWarnings>true</showWarnings>
119118
</configuration>
@@ -193,31 +192,6 @@
193192
</build>
194193

195194
<profiles>
196-
<profile>
197-
<id>intellij</id>
198-
<!-- workaround for intellij bug: https://youtrack.jetbrains.com/issue/IDEA-85478 -->
199-
<activation>
200-
<activeByDefault>false</activeByDefault>
201-
<property>
202-
<name>idea.maven.embedder.version</name>
203-
</property>
204-
</activation>
205-
<build>
206-
<plugins>
207-
<plugin>
208-
<groupId>org.apache.maven.plugins</groupId>
209-
<artifactId>maven-compiler-plugin</artifactId>
210-
<version>3.8.1</version>
211-
<configuration>
212-
<release>8</release>
213-
<source>1.8</source>
214-
<target>1.8</target>
215-
</configuration>
216-
</plugin>
217-
</plugins>
218-
</build>
219-
</profile>
220-
221195
<profile>
222196
<id>dependency-check</id>
223197
<build>
@@ -297,9 +271,6 @@
297271
</goals>
298272
</execution>
299273
</executions>
300-
<configuration>
301-
<release>7</release>
302-
</configuration>
303274
</plugin>
304275
</plugins>
305276
</build>

0 commit comments

Comments
 (0)