Skip to content

Commit ec9e522

Browse files
committed
Build settings
1 parent a306c5f commit ec9e522

4 files changed

Lines changed: 35 additions & 11 deletions

File tree

.idea/gradle.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/Mathematica-IntelliJ-Plugin_main.iml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/Mathematica-IntelliJ-Plugin_test.iml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.1.60'
2+
ext.kotlin_version = '1.1.61'
33

44
repositories {
55
mavenCentral()
@@ -12,21 +12,44 @@ buildscript {
1212
}
1313

1414
dependencies {
15-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
15+
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1616
classpath "org.jetbrains.intellij.plugins:gradle-intellij-plugin:0.3.0-SNAPSHOT"
1717
}
1818
}
1919

2020

2121
plugins {
22-
id "org.jetbrains.kotlin.jvm" version "1.1.60"
22+
id "org.jetbrains.kotlin.jvm" version '1.1.61'
2323
}
2424

2525
apply plugin: 'java'
2626
apply plugin: 'org.jetbrains.intellij'
2727
apply plugin: "kotlin"
2828

2929

30+
/*
31+
* Copyright (c) 2017 Patrick Scheibe
32+
*
33+
* Permission is hereby granted, free of charge, to any person obtaining a copy
34+
* of this software and associated documentation files (the "Software"), to deal
35+
* in the Software without restriction, including without limitation the rights
36+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
37+
* copies of the Software, and to permit persons to whom the Software is
38+
* furnished to do so, subject to the following conditions:
39+
*
40+
* The above copyright notice and this permission notice shall be included in
41+
* all copies or substantial portions of the Software.
42+
*
43+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
44+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
45+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
46+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
47+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
48+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
49+
* THE SOFTWARE.
50+
*
51+
*/
52+
3053
//noinspection GroovyAssignabilityCheck,GrUnresolvedAccess
3154
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
3255
//noinspection GrUnresolvedAccess
@@ -77,6 +100,7 @@ version '3.0pre1'
77100

78101
intellij {
79102
version = '2017.2.5'
103+
downloadSources = true
80104
pluginName = 'Mathematica-IntelliJ-Plugin'
81105
updateSinceUntilBuild = false
82106
}

0 commit comments

Comments
 (0)