Skip to content

Commit 52563f2

Browse files
committed
update version
1 parent 4d407a4 commit 52563f2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ XMake installed on the system. Available [here](https://github.com/xmake-io/xmak
5656

5757
```
5858
plugins {
59-
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ buildscript {
7070
}
7171
}
7272
dependencies {
73-
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
73+
classpath 'org.tboox:gradle-xmake-plugin:1.0.9'
7474
}
7575
repositories {
7676
mavenCentral()

README_zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。
5656

5757
```
5858
plugins {
59-
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ buildscript {
7070
}
7171
}
7272
dependencies {
73-
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
73+
classpath 'org.tboox:gradle-xmake-plugin:1.0.9'
7474
}
7575
repositories {
7676
mavenCentral()

gradle-xmake-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
apply plugin: 'groovy'
99

1010
group = "org.tboox"
11-
version = "1.0.8"
11+
version = "1.0.9"
1212

1313
repositories {
1414
// Use jcenter for resolving your dependencies.

gradle-xmake-plugin/src/main/groovy/org/tboox/gradle/XMakeExecutor.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class XMakeExecutor {
8484
// wait for process exit
8585
int retCode = process.waitFor()
8686
if (retCode != 0)
87-
throw new GradleException("exec failed( " + retCode .. ")")
87+
throw new GradleException("exec failed( " + retCode + ")")
8888
}
8989
catch (IOException e) {
9090
throw new GradleScriptException(TAG, e)

nativelib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
2+
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
33
}
44

55
apply plugin: 'com.android.library'

0 commit comments

Comments
 (0)