File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 1.1.0 * (2016/05/04)*
5+ --------------------------
6+ * Add support for product flavors (#1 )
7+
48Version 1.0.1 * (2016/02/20)*
59--------------------------
610* Fix artifact name
Original file line number Diff line number Diff line change @@ -104,22 +104,22 @@ Build script snippet for use in all Gradle versions:
104104buildscript {
105105 repositories {
106106 maven {
107- url " https://plugins.gradle.org/m2/"
107+ url ' https://plugins.gradle.org/m2/'
108108 }
109109 }
110110 dependencies {
111- classpath " gradle.plugin.com.jenzz:buildconstants:1.0.1"
111+ classpath ' gradle.plugin.com.jenzz:buildconstants:1.1.0'
112112 }
113113}
114114
115- apply plugin: " com.jenzz.buildconstants"
115+ apply plugin: ' com.jenzz.buildconstants'
116116```
117117
118118Build script snippet for new, incubating, plugin mechanism introduced in Gradle 2.1:
119119
120120``` groovy
121121plugins {
122- id " com.jenzz.buildconstants" version "1.0.1"
122+ id ' com.jenzz.buildconstants' version '1.1.0'
123123}
124124```
125125
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ allprojects {
1414}
1515
1616ext {
17- pluginVersion = ' 1.0.1 '
17+ pluginVersion = ' 1.1.0 '
1818}
You can’t perform that action at this time.
0 commit comments