File tree 1 file changed +16
-4
lines changed
1 file changed +16
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright 2012-2014 Institut National des Sciences Appliquées de Lyon (INSA-Lyon)
2
- #
2
+ #
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
5
5
# You may obtain a copy of the License at
6
- #
6
+ #
7
7
# http://www.apache.org/licenses/LICENSE-2.0
8
- #
8
+ #
9
9
# Unless required by applicable law or agreed to in writing, software
10
10
# distributed under the License is distributed on an "AS IS" BASIS,
11
11
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -101,7 +101,7 @@ namespace :test do
101
101
end
102
102
103
103
namespace :special do
104
-
104
+
105
105
desc "Bootstrap Golo and the Maven plug-in for a clean-room environment"
106
106
task :bootstrap do
107
107
sh "mvn clean install -P !bootstrapped"
@@ -135,4 +135,16 @@ namespace :special do
135
135
end
136
136
end
137
137
138
+ desc "Check for property updates (dependencies + plugins)"
139
+ task :check_property_updates do
140
+ CMD = "mvn versions:display-property-updates"
141
+ sh CMD
142
+ Dir . chdir ( "golo-maven-plugin" ) do
143
+ sh CMD
144
+ end
145
+ Dir . chdir ( "jmh-benchmarks" ) do
146
+ sh CMD
147
+ end
148
+ end
149
+
138
150
end
You can’t perform that action at this time.
0 commit comments