diff options
| author | 2020-04-18 15:17:08 -0500 | |
|---|---|---|
| committer | 2020-04-18 21:17:08 +0100 | |
| commit | 1708c4cf6c6e79144ac06e45bf0d4a67e779d8a5 (patch) | |
| tree | c08a4f16763f311b23320a49f3951f9ceab44491 | |
| parent | Fix POM issues (#225) (diff) | |
| download | enigma-1708c4cf6c6e79144ac06e45bf0d4a67e779d8a5.tar.gz enigma-1708c4cf6c6e79144ac06e45bf0d4a67e779d8a5.tar.xz enigma-1708c4cf6c6e79144ac06e45bf0d4a67e779d8a5.zip | |
Fix darcula dependency (#226)
* Fix darcula dependency
Downstream doesn't take a half-done darcula without a groupId
Signed-off-by: liach <liach@users.noreply.github.com>
* Bump minor
Signed-off-by: liach <liach@users.noreply.github.com>
* Use fabric darcula
Signed-off-by: liach <liach@users.noreply.github.com>
Co-authored-by: liach <liach@users.noreply.github.com>
| -rw-r--r-- | build.gradle | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/build.gradle b/build.gradle index d937f630..b4b71e6d 100644 --- a/build.gradle +++ b/build.gradle | |||
| @@ -5,7 +5,7 @@ plugins { | |||
| 5 | } | 5 | } |
| 6 | 6 | ||
| 7 | group = 'cuchaz' | 7 | group = 'cuchaz' |
| 8 | version = '0.15.1' | 8 | version = '0.15.2' |
| 9 | 9 | ||
| 10 | def generatedSourcesDir = "$buildDir/generated-src" | 10 | def generatedSourcesDir = "$buildDir/generated-src" |
| 11 | 11 | ||
| @@ -35,14 +35,6 @@ repositories { | |||
| 35 | name "Modmuss Repository" | 35 | name "Modmuss Repository" |
| 36 | url 'https://maven.modmuss50.me/' | 36 | url 'https://maven.modmuss50.me/' |
| 37 | } | 37 | } |
| 38 | |||
| 39 | ivy { | ||
| 40 | name "darcula" | ||
| 41 | artifactPattern "https://raw.githubusercontent.com/bulenkov/Darcula/master/build/[module].[ext]" | ||
| 42 | metadataSources { | ||
| 43 | artifact() | ||
| 44 | } | ||
| 45 | } | ||
| 46 | } | 38 | } |
| 47 | 39 | ||
| 48 | configurations { | 40 | configurations { |
| @@ -59,7 +51,7 @@ dependencies { | |||
| 59 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' | 51 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' |
| 60 | implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.13' | 52 | implementation 'net.fabricmc:procyon-fabric-compilertools:0.5.35.13' |
| 61 | implementation 'net.fabricmc:cfr:0.0.1' | 53 | implementation 'net.fabricmc:cfr:0.0.1' |
| 62 | implementation name: "darcula", version: "1.0.0" | 54 | implementation 'com.bulenkov:darcula:1.0.0.1' |
| 63 | implementation 'de.sciss:syntaxpane:1.2.0' | 55 | implementation 'de.sciss:syntaxpane:1.2.0' |
| 64 | implementation 'me.xdrop:fuzzywuzzy:1.2.0' | 56 | implementation 'me.xdrop:fuzzywuzzy:1.2.0' |
| 65 | 57 | ||