Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Apr 21, 2020
1 parent 4d407a4 commit 52563f2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ XMake installed on the system. Available [here](https://github.com/xmake-io/xmak

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
classpath 'org.tboox:gradle-xmake-plugin:1.0.9'
}
repositories {
mavenCentral()
Expand Down
4 changes: 2 additions & 2 deletions README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.8'
classpath 'org.tboox:gradle-xmake-plugin:1.0.9'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle-xmake-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
apply plugin: 'groovy'

group = "org.tboox"
version = "1.0.8"
version = "1.0.9"

repositories {
// Use jcenter for resolving your dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class XMakeExecutor {
// wait for process exit
int retCode = process.waitFor()
if (retCode != 0)
throw new GradleException("exec failed( " + retCode .. ")")
throw new GradleException("exec failed( " + retCode + ")")
}
catch (IOException e) {
throw new GradleScriptException(TAG, e)
Expand Down
2 changes: 1 addition & 1 deletion nativelib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.8'
id 'org.tboox.gradle-xmake-plugin' version '1.0.9'
}

apply plugin: 'com.android.library'
Expand Down

0 comments on commit 52563f2

Please sign in to comment.