Skip to content

Commit 568a345

Browse files
author
Luis Gustavo Nardin
committed
Update Java and Gradle versions
1 parent 07b9f6f commit 568a345

6 files changed

Lines changed: 10 additions & 8 deletions

File tree

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
#
44
# These are explicitly windows files and should use crlf
55
*.bat text eol=crlf
6-

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ bin
2424
# Visual Studio Code
2525
.vscode
2626

27+
# Theia IDE
28+
.theia
29+
2730
# Project
2831
precomp_data
2932
test-results

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018, RoboCupRescue
3+
Copyright (c) 2018-2021, RoboCupRescue
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- Git
88
- Gradle
9-
- OpenJDK Java 8+
9+
- OpenJDK Java 11+
1010

1111
## 2. Download
1212

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ plugins {
22
id 'java'
33
}
44

5-
sourceCompatibility = '1.8'
6-
targetCompatibility = '1.8'
7-
version = '1.0'
5+
sourceCompatibility = '11'
6+
targetCompatibility = '11'
7+
version = '1.1'
88

99
dependencies {
1010
implementation fileTree( dir: 'library', include: '**/*.jar', exclude: '**/*-source.jar' )
@@ -13,7 +13,7 @@ dependencies {
1313
}
1414

1515
repositories {
16-
jcenter()
16+
mavenCentral()
1717
}
1818

1919
sourceSets {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)