Skip to content

Commit 4cea7bb

Browse files
committed
update version
1 parent 551be63 commit 4cea7bb

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
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.1.4'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.1.5'
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ buildscript {
7070
}
7171
}
7272
dependencies {
73-
classpath 'org.tboox:gradle-xmake-plugin:1.1.4'
73+
classpath 'org.tboox:gradle-xmake-plugin:1.1.5'
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.1.4'
59+
id 'org.tboox.gradle-xmake-plugin' version '1.1.5'
6060
}
6161
```
6262

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

build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ buildscript {
44
repositories {
55
google()
66
mavenCentral()
7-
7+
88
}
99
dependencies {
10-
//classpath 'com.android.tools.build:gradle:3.5.2'
11-
classpath "com.android.tools.build:gradle:7.0.0-alpha14"
10+
classpath "com.android.tools.build:gradle:4.0.0"
1211
//classpath fileTree(dir: 'gradle-xmake-plugin/build/libs', include: ['*.jar'])
13-
12+
1413
// NOTE: Do not place your application dependencies here; they belong
1514
// in the individual module build.gradle files
1615
}
@@ -20,7 +19,7 @@ allprojects {
2019
repositories {
2120
google()
2221
mavenCentral()
23-
22+
2423
}
2524
}
2625

gradle-xmake-plugin/build.gradle

Lines changed: 2 additions & 3 deletions
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.1.4"
11+
version = "1.1.5"
1212

1313
repositories {
1414
// Use mavenCentral for resolving your dependencies.
@@ -21,8 +21,7 @@ dependencies {
2121
implementation gradleApi()
2222
// Use JUnit test framework
2323
testImplementation 'junit:junit:4.12'
24-
//compileOnly 'com.android.tools.build:gradle:3.5.3'
25-
compileOnly "com.android.tools.build:gradle:7.0.0-alpha14"
24+
compileOnly "com.android.tools.build:gradle:4.0.0"
2625
}
2726

2827
gradlePlugin {

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
66
#distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
7-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-rc-1-bin.zip
7+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

nativelib/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.tboox.gradle-xmake-plugin' version '1.1.4'
2+
id 'org.tboox.gradle-xmake-plugin' version '1.1.5'
33
}
44
apply plugin: 'com.android.library'
55
//apply plugin: "org.tboox.gradle-xmake-plugin"
@@ -52,7 +52,6 @@ android {
5252
path "jni/CMakeLists.txt"
5353
}*/
5454

55-
5655
xmake {
5756
//logLevel "verbose"
5857
path "jni/xmake.lua"

0 commit comments

Comments
 (0)