Skip to content

Commit

Permalink
WIP: preparation for simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Sep 6, 2023
1 parent 70d7982 commit 58c0e62
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'java'

repositories {
maven {
url 'https://dxfeed.jfrog.io/artifactory/maven'
url 'https://dxfeed.jfrog.io/artifactory/maven-open'
}
}

Expand All @@ -12,6 +12,7 @@ dependencies {
implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'aarch64-osx', ext: 'zip')
implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'x86_64-osx', ext: 'zip')
implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'aarch64-ios', ext: 'zip')
// implementation(group: 'com.dxfeed', name: "${name}", version: "${native_version}", classifier: 'aarch64-ios-sim', ext: 'zip')
}

task fetchDependencies(type: Copy) {
Expand Down Expand Up @@ -41,6 +42,9 @@ task fetchDependencies(type: Copy) {
case ~/.*aarch64-ios.*/:
return 'graal_builds/ios'
break
case ~/.*aarch64-ios-sim.*/:
return 'graal_builds/ios_simulator'
break
default:
return 'graal_builds/$zipFileName'
break
Expand Down

0 comments on commit 58c0e62

Please sign in to comment.