Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Apr 17, 2020
1 parent 7a1a1cd commit a49a122
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.6'
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.6'
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
}
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.6'
id 'org.tboox.gradle-xmake-plugin' version '1.0.7'
}
```

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.6'
classpath 'org.tboox:gradle-xmake-plugin:1.0.7'
}
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.6"
version = "1.0.7"

repositories {
// Use jcenter for resolving your dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class XMakeBuildTask extends DefaultTask {
parameters.add("-q")
break
}
File libsDir = new File(taskContext.buildDirectory, "libs/" + taskContext.buildArch)
File libsDir = new File(taskContext.buildDirectory, String.join(File.separator, "libs", taskContext.buildArch))
parameters.add("-o")
parameters.add(libsDir.path)
Set<String> targets = taskContext.targets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class XMakeRebuildTask extends DefaultTask {
parameters.add("-q")
break
}
File libsDir = new File(taskContext.buildDirectory, "libs/" + taskContext.buildArch)
File libsDir = new File(taskContext.buildDirectory, String.join(File.separator, "libs", taskContext.buildArch))
parameters.add("-o")
parameters.add(libsDir.path)
Set<String> targets = taskContext.targets
Expand Down

0 comments on commit a49a122

Please sign in to comment.