Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
KorGE 4.0.0-rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed May 3, 2023
1 parent 49cf6e3 commit 380378f
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 10 deletions.
5 changes: 3 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import korlibs.korge.gradle.*
plugins {
//alias(libs.plugins.korge)
//id("com.soywiz.korge") version "999.0.0.999"
id("com.soywiz.korge") version "4.0.0-rc"
id("com.soywiz.korge") version "4.0.0-rc4"
}

korge {
Expand All @@ -23,7 +23,8 @@ korge {
targetDesktop()
//targetDesktopCross()
targetIos()
targetAndroidDirect()
targetAndroid()

serializationJson()
}

Expand Down
6 changes: 3 additions & 3 deletions example/deps.kproject.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#name: deps
dependencies:
- ../korge-i18n
- ../korio-bus
- ../korma-astar
- ../korge-i18n
- ../korio-bus
- ../korma-astar
2 changes: 1 addition & 1 deletion example/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion example/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pluginManagement { repositories { mavenLocal(); mavenCentral(); google(); gradl

plugins {
//id("com.soywiz.kproject.settings") version "0.0.1-SNAPSHOT"
id("com.soywiz.kproject.settings") version "0.1.2"
id("com.soywiz.kproject.settings") version "0.1.3"
}


Expand Down
5 changes: 4 additions & 1 deletion korge-i18n/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
build
/.idea
/.gradle
/build
/build.gradle
6 changes: 5 additions & 1 deletion korge-i18n/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
buildscript { repositories { mavenLocal(); mavenCentral(); google(); gradlePluginPortal() } }
plugins {
id("com.soywiz.kproject") version "0.1.2"
id("com.soywiz.kproject") version "0.1.3"
}
dependencies {
add("commonMainApi", "com.soywiz.korlibs.korge2:korge")
}
File extraGradle = file("build.extra.gradle")
if (extraGradle.exists()) {
apply from: extraGradle
}
4 changes: 4 additions & 0 deletions korio-bus/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.idea
/.gradle
/build
/build.gradle
6 changes: 6 additions & 0 deletions korio-bus/kproject.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: "korio-bus"
plugins:
#- serialization
dependencies:
- "maven::common::com.soywiz.korlibs.korge2:korge"

5 changes: 4 additions & 1 deletion korma-astar/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
build
/.idea
/.gradle
/build
/build.gradle

0 comments on commit 380378f

Please sign in to comment.