Skip to content

Commit

Permalink
Remove Coherence policy due to causing odd build failures
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Jun 28, 2020
1 parent 49fc588 commit 59e30e9
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 100 deletions.
1 change: 0 additions & 1 deletion build.gradle
Expand Up @@ -156,6 +156,5 @@ tasks.coveralls {
}

dependencyUpdates.resolutionStrategy {
force libraries.coherenceProvidedScope
force testLibraries.truth
}
14 changes: 0 additions & 14 deletions gradle/dependencies.gradle
Expand Up @@ -99,20 +99,6 @@ ext {
akka: "com.typesafe.akka:akka-actor_2.12:${versions.akka}",
cache2k: "org.cache2k:cache2k-core:${versions.cache2k}",
checkerAnnotations: "org.checkerframework:checker-qual:${versions.checkerFramework}",
coherence: [
"com.oracle.coherence.ce:coherence:${versions.coherence}",
'javax.json.bind:javax.json.bind-api:1.0',
],
coherenceProvidedScope: [
'org.glassfish.jersey.core:jersey-server:2.31',
'javax.json.bind:javax.json.bind-api:1.0',
'javax.ws.rs:javax.ws.rs-api:2.0',
'javax.jms:javax.jms-api:2.0.1',
'javax.inject:javax.inject:1',
'org.ow2.asm:asm-commons:8.0.1',
'com.sleepycat:je:18.3.12',
'org.ow2.asm:asm:8.0.1',
],
collision: "systems.comodal:collision:${versions.collision}",
commonsCompress: "org.apache.commons:commons-compress:${versions.commonsCompress}",
commonsLang3: "org.apache.commons:commons-lang3:${versions.commonsLang3}",
Expand Down
2 changes: 0 additions & 2 deletions simulator/build.gradle
Expand Up @@ -20,7 +20,6 @@ dependencies {
implementation libraries.ehcache3
implementation libraries.fastutil
implementation libraries.slf4jNop
implementation libraries.coherence
implementation libraries.collision
implementation libraries.fastfilter
implementation libraries.flipTables
Expand All @@ -30,7 +29,6 @@ dependencies {
implementation libraries.elasticSearch
implementation libraries.commonsCompress
implementation libraries.univocityParsers
implementation libraries.coherenceProvidedScope

testImplementation testLibraries.testng
}
Expand Down
Expand Up @@ -45,7 +45,6 @@
import com.github.benmanes.caffeine.cache.simulator.policy.opt.UnboundedPolicy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.Cache2kPolicy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.CaffeinePolicy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.CoherencePolicy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.CollisionPolicy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.Ehcache3Policy;
import com.github.benmanes.caffeine.cache.simulator.policy.product.ElasticSearchPolicy;
Expand Down Expand Up @@ -189,7 +188,6 @@ private void registerProduct() {
factories.put("product.Tcache", TCachePolicy::policies);
factories.put("product.Cache2k", Cache2kPolicy::policies);
factories.put("product.Ehcache3", Ehcache3Policy::policies);
factories.put("product.Coherence", CoherencePolicy::policies);
factories.put("product.Collision", CollisionPolicy::policies);
factories.put("product.ExpiringMap", ExpiringMapPolicy::policies);
factories.put("product.Elasticsearch", ElasticSearchPolicy::policies);
Expand Down

This file was deleted.

0 comments on commit 59e30e9

Please sign in to comment.