Skip to content
This repository was archived by the owner on Sep 13, 2022. It is now read-only.
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
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,21 +96,22 @@ When using gradle, it is fairly simple to import Keyple components into your pro

```
repositories {
//to import snapshots
maven {url 'https://oss.sonatype.org/content/repositories/snapshots' }
//to import releases
maven { url 'https://oss.sonatype.org/content/repositories/releases' }

//to import snapshots
maven {url 'https://oss.sonatype.org/content/repositories/snapshots' }
}

dependencies {
//Keyple core is a mandatory library for using Keyple, in this case import the last version of keyple-java-core
implementation group: 'org.eclipse.keyple', name: 'keyple-java-core', version: '+'
implementation group: 'org.eclipse.keyple', name: 'keyple-java-core', version: '0.8'

//Import Calypso library to support Calypso Portable Object, in this case import the last version of keyple-java-calypso
implementation group: 'org.eclipse.keyple', name: 'keyple-java-calypso', version: '+'
implementation group: 'org.eclipse.keyple', name: 'keyple-java-calypso', version: '0.8'

//Import PCSC library to use a Pcsc reader, in this case import the last version of keyple-java-plugin-pcsc
implementation group: 'org.eclipse.keyple', name: 'keyple-java-plugin-pcsc', version: '+'
implementation group: 'org.eclipse.keyple', name: 'keyple-java-plugin-pcsc', version: '0.8'
...
}
```
Expand Down
2 changes: 2 additions & 0 deletions java/example/calypso/remotese/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ task ('printJavaHome') {
println "Java HOME : " + System.getProperty("java.home")
}

mainClassName = 'org.eclipse.keyple.example.remote.application.Demo_WebserviceWithRetrofit_MasterClient'

task('runWS_MasterClient', dependsOn: 'classes', type: JavaExec, group:'keyple') {
main = 'org.eclipse.keyple.example.remote.application.Demo_WebserviceWithRetrofit_MasterClient'
classpath = sourceSets.main.runtimeClasspath
Expand Down