Wizard: update Kotlin version for tests to dev one
Needed for support latest syntax of Gradle dsl for js
This commit is contained in:
+1
@@ -6,6 +6,7 @@
|
|||||||
package org.jetbrains.kotlin.tools.projectWizard.wizard.services
|
package org.jetbrains.kotlin.tools.projectWizard.wizard.services
|
||||||
|
|
||||||
import com.intellij.openapi.project.Project
|
import com.intellij.openapi.project.Project
|
||||||
|
import org.jetbrains.kotlin.tools.projectWizard.cli.KotlinVersionProviderTestWizardService
|
||||||
import org.jetbrains.kotlin.tools.projectWizard.cli.TestWizardService
|
import org.jetbrains.kotlin.tools.projectWizard.cli.TestWizardService
|
||||||
|
|
||||||
object TestWizardServices {
|
object TestWizardServices {
|
||||||
|
|||||||
+4
-1
@@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'org.jetbrains.kotlin.android' version '1.3.70'
|
id 'org.jetbrains.kotlin.android' version 'KOTLIN_VERSION'
|
||||||
id 'kotlin-android-extensions'
|
id 'kotlin-android-extensions'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
@@ -11,6 +11,9 @@ repositories {
|
|||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'androidx.core:core-ktx:1.1.0'
|
implementation 'androidx.core:core-ktx:1.1.0'
|
||||||
|
|||||||
+4
-1
@@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
id("com.android.application")
|
||||||
kotlin("android") version "1.3.70"
|
kotlin("android") version "KOTLIN_VERSION"
|
||||||
id("kotlin-android-extensions")
|
id("kotlin-android-extensions")
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
@@ -11,6 +11,9 @@ repositories {
|
|||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("androidx.core:core-ktx:1.1.0")
|
implementation("androidx.core:core-ktx:1.1.0")
|
||||||
|
|||||||
+3
@@ -3,4 +3,7 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+3
@@ -3,4 +3,7 @@ version = "1.0-SNAPSHOT"
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+4
-1
@@ -1,9 +1,12 @@
|
|||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
resolutionStrategy {
|
resolutionStrategy {
|
||||||
eachPlugin {
|
eachPlugin {
|
||||||
|
|||||||
+4
-1
@@ -1,9 +1,12 @@
|
|||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
resolutionStrategy {
|
resolutionStrategy {
|
||||||
eachPlugin {
|
eachPlugin {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
js('nodeJs') {
|
js('nodeJs') {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
js("nodeJs") {
|
js("nodeJs") {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':b')
|
implementation project(':b')
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":b"))
|
implementation(project(":b"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -65,13 +76,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':c')
|
implementation project(':c')
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":c"))
|
implementation(project(":c"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -65,13 +76,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+3
@@ -3,4 +3,7 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+3
@@ -3,4 +3,7 @@ version = "1.0-SNAPSHOT"
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -55,13 +66,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':a')
|
implementation project(':a')
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":a"))
|
implementation(project(":a"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -60,13 +71,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+11
@@ -21,7 +21,18 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
<modules>
|
<modules>
|
||||||
<module>a</module>
|
<module>a</module>
|
||||||
<module>b</module>
|
<module>b</module>
|
||||||
|
|||||||
+9
-2
@@ -1,9 +1,16 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
|
|
||||||
|
|
||||||
include(':a')
|
include(':a')
|
||||||
include(':b')
|
include(':b')
|
||||||
include(':c')
|
include(':c')
|
||||||
include(':d')
|
include(':d')
|
||||||
|
|
||||||
+9
-2
@@ -1,9 +1,16 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
|
|
||||||
|
|
||||||
include(":a")
|
include(":a")
|
||||||
include(":b")
|
include(":b")
|
||||||
include(":c")
|
include(":c")
|
||||||
include(":d")
|
include(":d")
|
||||||
|
|
||||||
+3
@@ -8,6 +8,9 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
rootProject
|
rootProject
|
||||||
|
|||||||
+3
@@ -8,6 +8,9 @@ version = "1.0-SNAPSHOT"
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
rootProject
|
rootProject
|
||||||
|
|||||||
+3
@@ -8,6 +8,9 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':b')
|
implementation project(':b')
|
||||||
|
|||||||
+3
@@ -8,6 +8,9 @@ version = "1.0-SNAPSHOT"
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":b"))
|
implementation(project(":b"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -60,13 +71,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -60,13 +71,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
|
|||||||
+14
-3
@@ -22,8 +22,19 @@
|
|||||||
<id>mavenCentral</id>
|
<id>mavenCentral</id>
|
||||||
<url>https://repo1.maven.org/maven2/</url>
|
<url>https://repo1.maven.org/maven2/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
<repository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>bintray.kotlin.kotlin-dev</id>
|
||||||
|
<url>https://dl.bintray.com/kotlin/kotlin-dev</url>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||||||
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
<testSourceDirectory>src/test/kotlin</testSourceDirectory>
|
||||||
@@ -31,7 +42,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -55,13 +66,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+9
-2
@@ -1,7 +1,14 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
|
|
||||||
|
|
||||||
include(':b:c')
|
include(':b:c')
|
||||||
include(':b')
|
include(':b')
|
||||||
|
|
||||||
+9
-2
@@ -1,7 +1,14 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
|
|
||||||
|
|
||||||
include(":b:c")
|
include(":b:c")
|
||||||
include(":b")
|
include(":b")
|
||||||
|
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
|
|||||||
+3
-3
@@ -31,7 +31,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -55,13 +55,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithTests
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithTests
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
def hostOs = System.getProperty("os.name")
|
def hostOs = System.getProperty("os.name")
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
val hostOs = System.getProperty("os.name")
|
val hostOs = System.getProperty("os.name")
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
linuxX64()
|
linuxX64()
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
linuxX64()
|
linuxX64()
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.js' version '1.3.70'
|
id 'org.jetbrains.kotlin.js' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'testGroupId'
|
group = 'testGroupId'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-js'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-js'
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("js") version "1.3.70"
|
kotlin("js") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "testGroupId"
|
group = "testGroupId"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-js"))
|
testImplementation(kotlin("test-js"))
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'generatedProject'
|
rootProject.name = 'generatedProject'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "generatedProject"
|
rootProject.name = "generatedProject"
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
||||||
|
|||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
|
|||||||
+3
-3
@@ -31,7 +31,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -55,13 +55,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'BackendApplication'
|
rootProject.name = 'BackendApplication'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "BackendApplication"
|
rootProject.name = "BackendApplication"
|
||||||
+4
-1
@@ -1,7 +1,7 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.3.70'
|
id 'org.jetbrains.kotlin.jvm' version 'KOTLIN_VERSION'
|
||||||
id 'application'
|
id 'application'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
@@ -9,6 +9,9 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit'
|
||||||
|
|||||||
+4
-1
@@ -1,7 +1,7 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version "1.3.70"
|
kotlin("jvm") version "KOTLIN_VERSION"
|
||||||
application
|
application
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
@@ -9,6 +9,9 @@ version = "1.0-SNAPSHOT"
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation(kotlin("test-junit"))
|
testImplementation(kotlin("test-junit"))
|
||||||
|
|||||||
+3
-3
@@ -31,7 +31,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-maven-plugin</artifactId>
|
<artifactId>kotlin-maven-plugin</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>compile</id>
|
<id>compile</id>
|
||||||
@@ -63,13 +63,13 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit</artifactId>
|
<artifactId>kotlin-test-junit</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
||||||
<version>1.3.70</version>
|
<version>KOTLIN_VERSION</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'ConsoleApplication'
|
rootProject.name = 'ConsoleApplication'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "ConsoleApplication"
|
rootProject.name = "ConsoleApplication"
|
||||||
+4
-1
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.js' version '1.3.70'
|
id 'org.jetbrains.kotlin.js' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
@@ -7,6 +7,9 @@ version = '1.0-SNAPSHOT'
|
|||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
maven {
|
maven {
|
||||||
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
|
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-1
@@ -1,5 +1,5 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("js") version "1.3.70"
|
kotlin("js") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
@@ -7,6 +7,9 @@ version = "1.0-SNAPSHOT"
|
|||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
maven {
|
maven {
|
||||||
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
|
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
|
||||||
}
|
}
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'FrontendApplication'
|
rootProject.name = 'FrontendApplication'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "FrontendApplication"
|
rootProject.name = "FrontendApplication"
|
||||||
+4
-1
@@ -1,7 +1,7 @@
|
|||||||
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpack
|
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpack
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
id 'application'
|
id 'application'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
@@ -13,6 +13,9 @@ repositories {
|
|||||||
maven {
|
maven {
|
||||||
url 'https://dl.bintray.com/kotlin/ktor'
|
url 'https://dl.bintray.com/kotlin/ktor'
|
||||||
}
|
}
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
maven {
|
maven {
|
||||||
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
|
url 'https://dl.bintray.com/kotlin/kotlin-js-wrappers'
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-1
@@ -1,7 +1,7 @@
|
|||||||
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpack
|
import org.jetbrains.kotlin.gradle.targets.js.webpack.KotlinWebpack
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
application
|
application
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
@@ -13,6 +13,9 @@ repositories {
|
|||||||
maven {
|
maven {
|
||||||
url = uri("https://dl.bintray.com/kotlin/ktor")
|
url = uri("https://dl.bintray.com/kotlin/ktor")
|
||||||
}
|
}
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
maven {
|
maven {
|
||||||
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
|
url = uri("https://dl.bintray.com/kotlin/kotlin-js-wrappers")
|
||||||
}
|
}
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'FullStackWebApplication'
|
rootProject.name = 'FullStackWebApplication'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "FullStackWebApplication"
|
rootProject.name = "FullStackWebApplication"
|
||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|
||||||
|
|||||||
+5
-2
@@ -1,14 +1,17 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
val commonMain by getting {
|
val commonMain by getting {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'MultiplatformApplication'
|
rootProject.name = 'MultiplatformApplication'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "MultiplatformApplication"
|
rootProject.name = "MultiplatformApplication"
|
||||||
+4
-1
@@ -1,13 +1,16 @@
|
|||||||
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithTests
|
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTargetWithTests
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id 'org.jetbrains.kotlin.multiplatform' version '1.3.70'
|
id 'org.jetbrains.kotlin.multiplatform' version 'KOTLIN_VERSION'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
version = '1.0-SNAPSHOT'
|
version = '1.0-SNAPSHOT'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+4
-1
@@ -1,11 +1,14 @@
|
|||||||
plugins {
|
plugins {
|
||||||
kotlin("multiplatform") version "1.3.70"
|
kotlin("multiplatform") version "KOTLIN_VERSION"
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
kotlin {
|
kotlin {
|
||||||
jvm {
|
jvm {
|
||||||
|
|||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = 'MultiplatformLibrary'
|
rootProject.name = 'MultiplatformLibrary'
|
||||||
+9
@@ -1 +1,10 @@
|
|||||||
|
pluginManagement {
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
rootProject.name = "MultiplatformLibrary"
|
rootProject.name = "MultiplatformLibrary"
|
||||||
+4
-1
@@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application'
|
id 'com.android.application'
|
||||||
id 'org.jetbrains.kotlin.android' version '1.3.70'
|
id 'org.jetbrains.kotlin.android' version 'KOTLIN_VERSION'
|
||||||
id 'kotlin-android-extensions'
|
id 'kotlin-android-extensions'
|
||||||
}
|
}
|
||||||
group = 'me.user'
|
group = 'me.user'
|
||||||
@@ -11,6 +11,9 @@ repositories {
|
|||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':shared')
|
implementation project(':shared')
|
||||||
|
|||||||
+4
-1
@@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.android.application")
|
id("com.android.application")
|
||||||
kotlin("android") version "1.3.70"
|
kotlin("android") version "KOTLIN_VERSION"
|
||||||
id("kotlin-android-extensions")
|
id("kotlin-android-extensions")
|
||||||
}
|
}
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
@@ -11,6 +11,9 @@ repositories {
|
|||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation(project(":shared"))
|
implementation(project(":shared"))
|
||||||
|
|||||||
+4
-1
@@ -4,4 +4,7 @@ version = '1.0-SNAPSHOT'
|
|||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
|
}
|
||||||
+4
-2
@@ -1,7 +1,9 @@
|
|||||||
|
|
||||||
group = "me.user"
|
group = "me.user"
|
||||||
version = "1.0-SNAPSHOT"
|
version = "1.0-SNAPSHOT"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
|
}
|
||||||
+4
-1
@@ -1,9 +1,12 @@
|
|||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url 'https://dl.bintray.com/kotlin/kotlin-dev'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
resolutionStrategy {
|
resolutionStrategy {
|
||||||
eachPlugin {
|
eachPlugin {
|
||||||
|
|||||||
+4
-1
@@ -1,9 +1,12 @@
|
|||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
mavenCentral()
|
maven {
|
||||||
|
url = uri("https://dl.bintray.com/kotlin/kotlin-dev")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
resolutionStrategy {
|
resolutionStrategy {
|
||||||
eachPlugin {
|
eachPlugin {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user