Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
waruqi committed Aug 7, 2021
1 parent 551be63 commit 4cea7bb
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 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.1.4'
id 'org.tboox.gradle-xmake-plugin' version '1.1.5'
}
```

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

Expand All @@ -70,7 +70,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.1.4'
classpath 'org.tboox:gradle-xmake-plugin:1.1.5'
}
repositories {
mavenCentral()
Expand Down
9 changes: 4 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ buildscript {
repositories {
google()
mavenCentral()

}
dependencies {
//classpath 'com.android.tools.build:gradle:3.5.2'
classpath "com.android.tools.build:gradle:7.0.0-alpha14"
classpath "com.android.tools.build:gradle:4.0.0"
//classpath fileTree(dir: 'gradle-xmake-plugin/build/libs', include: ['*.jar'])

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -20,7 +19,7 @@ allprojects {
repositories {
google()
mavenCentral()

}
}

Expand Down
5 changes: 2 additions & 3 deletions 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.1.4"
version = "1.1.5"

repositories {
// Use mavenCentral for resolving your dependencies.
Expand All @@ -21,8 +21,7 @@ dependencies {
implementation gradleApi()
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
//compileOnly 'com.android.tools.build:gradle:3.5.3'
compileOnly "com.android.tools.build:gradle:7.0.0-alpha14"
compileOnly "com.android.tools.build:gradle:4.0.0"
}

gradlePlugin {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
#distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-rc-1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
3 changes: 1 addition & 2 deletions 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.1.4'
id 'org.tboox.gradle-xmake-plugin' version '1.1.5'
}
apply plugin: 'com.android.library'
//apply plugin: "org.tboox.gradle-xmake-plugin"
Expand Down Expand Up @@ -52,7 +52,6 @@ android {
path "jni/CMakeLists.txt"
}*/


xmake {
//logLevel "verbose"
path "jni/xmake.lua"
Expand Down

0 comments on commit 4cea7bb

Please sign in to comment.