Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZoltan Ujhelyi2019-08-17 15:02:31 +0000
committerZoltan Ujhelyi2019-08-17 15:02:31 +0000
commit5675c5920a8147c20882848c5a64fec71592924d (patch)
tree4042160bc11ce66b40a602d77f1b36173c2ed25b
parent091aff7927ceec749810c45a5d464b89a676f246 (diff)
downloadorg.eclipse.viatra-5675c5920a8147c20882848c5a64fec71592924d.tar.gz
org.eclipse.viatra-5675c5920a8147c20882848c5a64fec71592924d.tar.xz
org.eclipse.viatra-5675c5920a8147c20882848c5a64fec71592924d.zip
[542664] Exclude ASM-related dependencies from Guice dependency
Our code do not use the aspect-oriented functionality of Guice, thus it is not required to include old versions of ASM via Guice. Xtext does the same as can be seen in https://search.maven.org/artifact/org.eclipse.xtext/org.eclipse.xtext.util/2.18.0/jar
-rw-r--r--maven/viatra-query-language/pom.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/maven/viatra-query-language/pom.xml b/maven/viatra-query-language/pom.xml
index a080af6bc..ed7b83ee6 100644
--- a/maven/viatra-query-language/pom.xml
+++ b/maven/viatra-query-language/pom.xml
@@ -69,6 +69,12 @@
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
<version>3.0</version>
+ <exclusions>
+ <exclusion>
+ <artifactId>cglib</artifactId>
+ <groupId>*</groupId>
+ </exclusion>
+ </exclusions>
</dependency>
</dependencies>
<parent>

Back to the top