Skip to content

Commit a26207f

Browse files
author
likunlun
committed
fix alibaba#855 Could not find matching constructor for: org.gradle.api.publish.ivy.internal.publisher.IvyDescriptorFileGenerator
1 parent 5e24b42 commit a26207f

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

idea-plugin/build.gradle

+5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
buildscript {
22
repositories {
3+
mavenLocal()
4+
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
35
maven {
46
url "https://oss.sonatype.org/content/repositories/snapshots/"
57
}
68
maven {
79
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
810
}
11+
jcenter()
912
mavenCentral()
1013

1114
}
@@ -26,6 +29,8 @@ allprojects {
2629
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
2730
}
2831
repositories {
32+
mavenLocal()
33+
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }
2934
jcenter()
3035
mavenCentral()
3136
}

idea-plugin/p3c-common/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
2-
id "org.jetbrains.intellij" version '0.4.5'
2+
id "java"
3+
id "org.jetbrains.intellij" version '0.4.21'
34
}
45
apply plugin: 'kotlin'
5-
apply plugin: 'idea'
66
apply plugin: 'maven'
77
apply plugin: 'signing'
88

idea-plugin/p3c-idea/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
plugins {
2-
id "org.jetbrains.intellij" version '0.4.5'
2+
id "org.jetbrains.intellij" version '0.4.21'
33
}
44
apply plugin: 'kotlin'
5-
apply plugin: 'idea'
65

76
def myPlugins = ['git4idea']
87
def versionDotIndex = idea_version.indexOf('.')

0 commit comments

Comments
 (0)