Thank you very much for your advice!
We checked what we have downloaded and noticed that we have already downloaded version 4. We looked at the build.gradle file we see "version = '4.0.2'". This appears to be the latest version of the library?
Is there a git clone command for downloading what latest version? Our programmer used this git command to download the library:
"git clone https://github.com/infiniteautomation/BACnet4J.git".
If this is still not the latest then we would love to be able to download the latest with updated sample programs. Thanks again for any advice.
The following are the first few lines in the build.gradle
apply plugin: 'application'
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'maven-publish'
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
group = 'com.serotonin'
version = '4.0.2'
repositories {
jcenter()
}
dependencies {
compile 'ai.serotonin.oss:sero-scheduler:[1.1.0,2)'
compile 'ai.serotonin.oss:sero-warp:1.0.0'
compile 'org.apache.commons:commons-lang3:3.5'
compile 'org.scream3r:jssc:2.8.0'
compile 'org.slf4j:slf4j-api:[1.7.0,1.8)'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:[2.7.22,3)'
testCompile 'org.slf4j:slf4j-simple:[1.7.0,1.8)'
}