Skip to content

Commit

Permalink
💥 enforce minimum shadow version _1.2.3_ or _2.0.0_
Browse files Browse the repository at this point in the history
This library depends on the first compatible shadow version. The
 developer can enforce newer versions by just depending on them. This
 fix avoids to possibly break old builds and keeps included shadow
 version without the need to `force` it.
  • Loading branch information
TheBoegl committed Jan 20, 2018
1 parent ed2850a commit ab74a36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ group 'de.sebastianboegl.gradle.plugins'
version "${majorShadowVersion}.1.1"

def shadowVersions = [
'1': '1.2.4',
'2': '2.0.2'
'1': '1.2.3',
'2': '2.0.0'
]
def shadowVersion = shadowVersions[majorShadowVersion]

Expand Down

0 comments on commit ab74a36

Please sign in to comment.