Я разрабатываю плагин для intelliJ IDEA и использую внешнюю библиотеку. При запуске у меня возникает эта проблема.
SLF4J: путь к классу содержит несколько привязок SLF4J. SLF4J: Обнаружена привязка в [jar: file: / C: / Users / molos / Desktop / Папка диссертации / Thesis-project / build / idea-sandbox / plugins / Проект диссертации / lib / slf4j-log4j12-1.6. 0.jar! /Org/slf4j/impl/StaticLoggerBinder.class] SLF4J: Обнаружена привязка в [jar: file: / C: / Users / molos / .gradle / caches / modules-2 / files-2.1 / com. jetbrains.intellij.idea / ideaIC / 2019.3.1 / 52292e4f8a0ccb3ceb08bd81fd57b88923ac8e99 / ideaI C -2019.3.1 / lib / slf4j-log4j12-1.7.25.jar! /org/slf4j/impl/StaticLog]: 1004 *http://www.slf4j.org/codes.html#multiple_bindings для объяснения.
Это мой build.gradle.
plugins {
id 'java'
id 'maven-publish'
id 'org.jetbrains.intellij' version '0.4.10'
}
version '1.0-SNAPSHOT'
apply plugin: 'maven'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url = 'https://repo.maven.apache.org/maven2'
}
dependencies {
// https://mvnrepository.com/artifact/com.github.mauricioaniche/ck
compile group: 'com.github.mauricioaniche', name: 'ck', version: '0.4.4'
// https://mvnrepository.com/artifact/org.eclipse.jgit/org.eclipse.jgit
compile group: 'org.eclipse.jgit', name: 'org.eclipse.jgit', version: '2.2.0.201212191850-r'
// https://mvnrepository.com/artifact/org.apache.commons/commons-csv
compile group: 'org.apache.commons', name: 'commons-csv', version: '1.1'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version '2019.3.1'
}
Я перепробовал множество решений, которые нашел, но смог не решить.
Может кто-нибудь мне помочь?