extracted springAmqpVersion property into gradle.properties
This commit is contained in:
@@ -41,8 +41,10 @@ allprojects {
|
||||
|
||||
// version will be used in maven pom generation as well as determining
|
||||
// where artifacts should be deployed, based on release type of snapshot,
|
||||
// milestone or release. See Version sources in buildSrc/ for more info
|
||||
version = new Version('1.0.0.BUILD-SNAPSHOT')
|
||||
// milestone or release.
|
||||
// @see org.springframework.build.Version under buildSrc/ for more info
|
||||
// @see gradle.properties for the declaration of this property.
|
||||
version = new Version(springAmqpVersion)
|
||||
|
||||
// defoult set of maven repositories to be used when resolving dependencies
|
||||
repositories {
|
||||
|
||||
@@ -12,6 +12,13 @@
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# version to be applied to all projects in this multi-project build. this is
|
||||
# the one and only location version changes need to be made.
|
||||
# ------------------------------------------------------------------------------
|
||||
springAmqpVersion=1.0.0.BUILD-SNAPSHOT
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
# build system user roles
|
||||
# role may be either 'developer' or 'buildmaster'
|
||||
@@ -25,7 +32,7 @@ role = developer
|
||||
# no need to change/check in this file. Remember that properties can also be
|
||||
# specified at the gradle command line with -P, e.g.: -Prole=buildmaster
|
||||
# ------------------------------------------------------------------------------
|
||||
# role = buildmaster # overrides 'role = developer' here
|
||||
# role = buildmaster # overrides default 'role = developer' above
|
||||
# s3AccessKey=<springsource s3 access key>
|
||||
# s3SecretAccessKey=<springsource s3 secret access key>
|
||||
# docsHost=static.springsource.org
|
||||
|
||||
Reference in New Issue
Block a user