Skip to content

Commit

Permalink
release v2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yangchengdong committed Jun 5, 2019
1 parent e9a3f69 commit 9005c68
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MIS主要解决的问题是如何在一个模块内维护其对外暴露的接
buildscript {
dependencies {
...
classpath 'com.eastwood.tools.plugins:mis:2.0.0'
classpath 'com.eastwood.tools.plugins:mis:2.0.1'
}
}
```
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 {
classpath 'com.eastwood.tools.plugins:auto-inject:1.0.3'

// mis
classpath 'com.eastwood.tools.plugins:mis:2.0.0'
classpath 'com.eastwood.tools.plugins:mis:2.0.1'

// mis for dev
// classpath 'com.eastwood.tools.plugins:mis-plugin'
Expand Down
2 changes: 1 addition & 1 deletion mis-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apply plugin: 'maven'

def groupId = 'com.eastwood.tools.plugins'
def artifactId = 'mis'
def version = '2.0.0'
def version = '2.0.1'

def localReleaseDest = "${buildDir}/release/${version}"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MisPlugin implements Plugin<Project> {
})

project.allprojects.each {
if (it == project || it.childProjects.size() > 0) return
if (it == project) return
Project childProject = it
childProject.repositories {
flatDir {
Expand All @@ -83,9 +83,8 @@ class MisPlugin implements Plugin<Project> {
}

project.allprojects.each {
if (it == project || it.childProjects.size() > 0) return
if (it == project) return
Project childProject = it

def misScript = new File(childProject.projectDir, 'mis.gradle')
if (misScript.exists()) {
misExtension.childProject = childProject
Expand Down

0 comments on commit 9005c68

Please sign in to comment.