Skip to content

Commit

Permalink
Updated Gradle and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Sep 7, 2017
1 parent d65f3e3 commit f2221e1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
13 changes: 4 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import org.jetbrains.intellij.tasks.RunIdeaTask

plugins {
id "org.jetbrains.intellij" version "0.2.16"
id "org.jetbrains.intellij" version "0.2.17"
}

apply plugin: 'org.jetbrains.intellij'
apply plugin: 'java'

sourceCompatibility = JavaVersion.VERSION_1_8
Expand All @@ -18,17 +15,15 @@ if (project.file('gradle.properties').exists()) {
}

intellij {
version = '2017.2.1'
version = '2017.2.3'
updateSinceUntilBuild = true
pluginName = 'Key-Promoter-X'
// intellij.alternativeIdePath = '/Applications/Development/Android Studio.app'

}



// Simple function to load change-notes.html and description.html into valid text for plugin.xml
def htmlFixer = {f -> file(f).text.replace('<html>', '').replace('</html>', '')}
def htmlFixer = { f -> file(f).text.replace('<html>', '').replace('</html>', '') }

patchPluginXml {
changeNotes = htmlFixer('resources/META-INF/change-notes.html')
Expand All @@ -49,7 +44,7 @@ sourceSets {
}

task wrapper(type: Wrapper) {
gradleVersion = '3.5'
gradleVersion = '4.1'
}

version '5.8'
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Aug 11 02:08:46 CEST 2017
#Fri Sep 08 00:19:35 MSK 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
6 changes: 3 additions & 3 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"

warn ( ) {
warn () {
echo "$*"
}

die ( ) {
die () {
echo
echo "$*"
echo
Expand Down Expand Up @@ -155,7 +155,7 @@ if $cygwin ; then
fi

# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
Expand Down

0 comments on commit f2221e1

Please sign in to comment.