Skip to content

Commit

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

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.4'
id 'org.tboox.gradle-xmake-plugin' version '1.0.6'
}
```

Expand All @@ -69,7 +69,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.4'
classpath 'org.tboox:gradle-xmake-plugin:1.0.6'
}
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 @@ -57,7 +57,7 @@ xmake-gradle是一个无缝整合xmake的gradle插件。

```
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.4'
id 'org.tboox.gradle-xmake-plugin' version '1.0.6'
}
```

Expand All @@ -71,7 +71,7 @@ buildscript {
}
}
dependencies {
classpath 'org.tboox:gradle-xmake-plugin:1.0.4'
classpath 'org.tboox:gradle-xmake-plugin:1.0.6'
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {

/*
plugins {
id 'org.tboox.gradle-xmake-plugin' version '1.0.1'
id 'org.tboox.gradle-xmake-plugin' version '1.0.5'
}*/

allprojects {
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.4"
version = "1.0.6"

repositories {
// Use jcenter for resolving your dependencies.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ class XMakePlugin implements Plugin<Project> {
@Override
void apply(Project project) {

// check application/library plugin
if (project.plugins.findPlugin("com.android.application") == null
&& project.plugins.findPlugin("com.android.library") == null) {
throw new ProjectConfigurationException("Need android application/library plugin to be applied first", new Throwable())
}

// create xmake plugin extension
XMakePluginExtension extension = project.extensions.create('xmake', XMakePluginExtension)

Expand Down

0 comments on commit 116173b

Please sign in to comment.