Skip to content

Commit fc5e69a

Browse files
authored
Merge pull request #82 from MovingBlocks/testpack-api-source-compat
fix: Mark `testpack-api` as Java 8 compatible to avoid any dependency resolution errors
2 parents bf25da8 + 0fde94a commit fc5e69a

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build/
2323
local.properties
2424

2525
# Ignore IntelliJ
26-
/out/
26+
out/
2727
*.iml
2828
/*.ipr
2929
/*.iws
@@ -43,4 +43,4 @@ Icon
4343

4444
#Ignore Windows
4545
ehthumbs.db
46-
Thumbs.db
46+
Thumbs.db

testpack/testpack-api/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,6 @@
2222
*/
2323

2424
apply plugin: 'java'
25+
26+
sourceCompatibility = 1.8
27+
targetCompatibility = 1.8

0 commit comments

Comments
 (0)