Skip to content

Commit

Permalink
- Updated Kotlin to Version 1.5.10
Browse files Browse the repository at this point in the history
- Changed Kotlin dependencies to maven central
  • Loading branch information
ojaynico committed Jun 7, 2021
1 parent 4ee79df commit f59a6e2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ojaynico-kotlin-react-native
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native/1.1.2/pom)
[![Kotlin](https://img.shields.io/badge/kotlin-1.5.0-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ojaynico/ojaynico-kotlin-react-native/badge.svg)](https://search.maven.org/artifact/com.github.ojaynico/ojaynico-kotlin-react-native/1.1.3/pom)
[![Kotlin](https://img.shields.io/badge/kotlin-1.5.10-blue.svg?logo=kotlin)](http://kotlinlang.org)
[![npm version](https://img.shields.io/npm/v/react.svg?style=flat)](https://www.npmjs.com/package/react)
[![npm version](https://img.shields.io/npm/v/react-native?color=brightgreen&label=npm%20package)](https://www.npmjs.com/package/react-native)
[![Kotlin JS IR supported](https://img.shields.io/badge/Kotlin%2FJS-IR%20supported-yellow)](https://kotl.in/jsirsupported)
Expand Down Expand Up @@ -32,7 +32,7 @@ repositories {
}

dependencies {
implementation("com.github.ojaynico:ojaynico-kotlin-react-native:1.1.2")
implementation("com.github.ojaynico:ojaynico-kotlin-react-native:1.1.3")
}
```

Expand Down
9 changes: 4 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
kotlin("js") version "1.5.0"
kotlin("js") version "1.5.10"
id("maven-publish")
id("io.codearte.nexus-staging") version "0.30.0"
signing
}

group = "com.github.ojaynico"
version = "1.1.2"
version = "1.1.3"

val artifactName = project.name
val artifactGroup = project.group.toString()
Expand All @@ -31,7 +31,6 @@ val pomDeveloperEmail = "[email protected]"
repositories {
mavenCentral()
jcenter()
maven(url = "https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
}

kotlin {
Expand All @@ -42,8 +41,8 @@ kotlin {
}

dependencies {
implementation("org.jetbrains:kotlin-react:17.0.2-pre.156-kotlin-1.5.0")
implementation("org.jetbrains:kotlin-extensions:1.0.1-pre.156-kotlin-1.5.0")
implementation("org.jetbrains.kotlin-wrappers:kotlin-react:17.0.2-pre.207-kotlin-1.5.10")
implementation("org.jetbrains.kotlin-wrappers:kotlin-extensions:1.0.1-pre.207-kotlin-1.5.10")
implementation(npm("react", "17.0.2"))
implementation(npm("react-native", "0.64.0"))
}
Expand Down

0 comments on commit f59a6e2

Please sign in to comment.