Hello,
I’m trying to compile “CircularMapper”. I have modified “build.gradle” file in this way (only first lines:
group 'com.uni-tuebingen.de.it.eager.circularmapper'
version '1.93.5'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
}
}
subprojects {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
mavenCentral()
}
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'java'
apply plugin: 'idea'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'jacoco'
}
When I run “grandle build” I get these error:
FAILURE: Build failed with an exception.
Where:
Build file ‘/SRC/CircularMapper/build.gradle’ line: 25What went wrong:
A problem occurred evaluating root project ‘CircularMapper’.Plugin with id ‘maven’ not found.
- Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Line 25 is “apply plugin: ‘maven’”
What can I do? This is my first try with “gradle”.
Thanks.