Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions ShimmerBluetoothManager/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'

/*
Expand Down Expand Up @@ -57,13 +56,13 @@ publishing {


dependencies {
compile 'commons-codec:commons-codec:1.5'
compile 'commons-lang:commons-lang:2.6'
compile project (':ShimmerDriver')
implementation 'commons-codec:commons-codec:1.5'
implementation 'commons-lang:commons-lang:2.6'
implementation project (':ShimmerDriver')

// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
testImplementation 'junit:junit:4.12'
}
39 changes: 19 additions & 20 deletions ShimmerDriver/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'

/*
Expand All @@ -13,7 +12,7 @@ Rev0.2

//This version should match the git release tag
//version = '0.9.148alpha'

apply plugin: 'java-library'
sourceCompatibility = 1.11
targetCompatibility = 1.11

Expand Down Expand Up @@ -80,55 +79,55 @@ publishing {
}

dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
compile group: 'org.apache.commons', name: 'commons-math3', version: '3.6'
compile group: 'org.apache.commons', name: 'commons-math', version: '2.2'
compile group: 'com.google.guava', name: 'guava', version: '19.0'
api group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
api group: 'org.apache.commons', name: 'commons-math3', version: '3.6'
api group: 'org.apache.commons', name: 'commons-math', version: '2.2'
api group: 'com.google.guava', name: 'guava', version: '19.0'

// https://mvnrepository.com/artifact/java3d/vecmath
compile group: 'java3d', name: 'vecmath', version: '1.3.1'
api group: 'java3d', name: 'vecmath', version: '1.3.1'

// https://mvnrepository.com/artifact/commons-collections/commons-collections
compile group: 'commons-collections', name: 'commons-collections', version: '3.2'
api group: 'commons-collections', name: 'commons-collections', version: '3.2'

// https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
compile group: 'com.google.protobuf', name: 'protobuf-java', version: '3.4.0'
api group: 'com.google.protobuf', name: 'protobuf-java', version: '3.4.0'

// https://mvnrepository.com/artifact/io.grpc/grpc-all
compile group: 'io.grpc', name: 'grpc-all', version: '1.32.1'
api group: 'io.grpc', name: 'grpc-all', version: '1.32.1'

// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.3.6'
api group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.3.6'

// https://mvnrepository.com/artifact/com.codeminders/hidapi
compile group: 'com.codeminders', name: 'hidapi', version: '1.1'
api group: 'com.codeminders', name: 'hidapi', version: '1.1'

// https://mvnrepository.com/artifact/joda-time/joda-time
compile group: 'joda-time', name: 'joda-time', version: '2.9.4'
api group: 'joda-time', name: 'joda-time', version: '2.9.4'

// https://mvnrepository.com/artifact/com.github.wendykierp/JTransforms
compile group: 'com.github.wendykierp', name: 'JTransforms', version: '3.1'
api group: 'com.github.wendykierp', name: 'JTransforms', version: '3.1'

// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.21'
api 'org.slf4j:slf4j-api:1.7.21'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.21.1'

// https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api
compile("javax.annotation:javax.annotation-api:1.3.2")
api("javax.annotation:javax.annotation-api:1.3.2")

// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.13.2'
testImplementation 'junit:junit:4.13.2'

// https://mvnrepository.com/artifact/org.mockito/mockito-all
testCompile group: 'org.mockito', name: 'mockito-all', version: '1.10.19'
testImplementation group: 'org.mockito', name: 'mockito-all', version: '1.10.19'

// https://mvnrepository.com/artifact/junit/junit
testCompile group: 'junit', name: 'junit', version: '4.+'
testImplementation group: 'junit', name: 'junit', version: '4.+'

compile 'com.parse.bolts:bolts-tasks:1.4.0'
api 'com.parse.bolts:bolts-tasks:1.4.0'
}

22 changes: 11 additions & 11 deletions ShimmerDriverPC/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'

sourceCompatibility = 1.11
Expand Down Expand Up @@ -69,30 +69,30 @@ publishing {
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.slf4j:slf4j-api:1.7.21'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.21.1'
compile project (':ShimmerDriver')
compile project (':ShimmerBluetoothManager')
implementation project (':ShimmerDriver')
implementation project (':ShimmerBluetoothManager')

// https://mvnrepository.com/artifact/org.scream3r/jssc
//compile group: 'org.scream3r', name: 'jssc', version: '2.9.1'
compile group: 'io.github.java-native', name: 'jssc', version: '2.9.6'
//implementation group: 'org.scream3r', name: 'jssc', version: '2.9.1'
api group: 'io.github.java-native', name: 'jssc', version: '2.9.6'


// https://mvnrepository.com/artifact/net.sf.bluecove/bluecove
compile group: 'net.sf.bluecove', name: 'bluecove', version: '2.1.0'
implementation group: 'net.sf.bluecove', name: 'bluecove', version: '2.1.0'

// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.4'
api group: 'commons-io', name: 'commons-io', version: '2.4'

// https://mvnrepository.com/artifact/net.sf.jchart2d/jchart2d
compile group: 'net.sf.jchart2d', name: 'jchart2d', version: '3.3.2'
api group: 'net.sf.jchart2d', name: 'jchart2d', version: '3.3.2'

// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
compile 'com.parse.bolts:bolts-tasks:1.4.0'
testImplementation 'junit:junit:4.12'
implementation 'com.parse.bolts:bolts-tasks:1.4.0'
}
12 changes: 6 additions & 6 deletions ShimmerPCBasicExamples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,21 @@ repositories {
// In this section you declare the dependencies for your production and test code
dependencies {
// The production code uses the SLF4J logging API at compile time
compile 'org.slf4j:slf4j-api:1.7.21'
implementation 'org.slf4j:slf4j-api:1.7.21'
// https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-slf4j-impl
testImplementation group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.21.1'

// Declare the dependency for your favourite test framework you want to use in your tests.
// TestNG is also supported by the Gradle Test task. Just change the
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
// 'test.useTestNG()' to your build script.
testCompile 'junit:junit:4.12'
testImplementation 'junit:junit:4.12'

compile project (':ShimmerDriver')
compile project (':ShimmerDriverPC')
implementation project (':ShimmerDriver')
implementation project (':ShimmerDriverPC')
// compile(group: 'com.shimmerresearch', name: 'shimmerdriver', version: '0.10.0_alpha')
// compile(group: 'com.shimmerresearch', name: 'shimmerdriverpc', version: '0.10.0_alpha')

compile name: 'ShimmerBiophysicalProcessingLibrary_Rev_0_11'
compile 'com.parse.bolts:bolts-tasks:1.4.0'
implementation name: 'ShimmerBiophysicalProcessingLibrary_Rev_0_11'
implementation 'com.parse.bolts:bolts-tasks:1.4.0'
}