Merge branch 'master' of https://cs.idc.ac.il/rhodecode/meerkat/meerkat-java into voting-booth-gui
commit
1ff490a354
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version "1.0.2"
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
id 'org.akhikhl.gretty' version "1.2.4"
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -3,5 +3,5 @@ distributionBase=GRADLE_USER_HOME
|
|||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip
|
||||
distributionSha256Sum=4647967f8de78d6d6d8093cdac50f368f8c2b8038f41a5afe1c3bce4c69219a9
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-3.1-all.zip
|
||||
distributionSha256Sum=43be380834a13e28e9504c21f67fe1a8895ab54f314a6596601896dca7213482
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
|
||||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/perl -i.orig
|
||||
|
||||
# Edit a build.gradle file in-place to update plugins to a specific version
|
||||
# To update all subprojects, run:
|
||||
# ./versionup.pl */build.gradle
|
||||
|
||||
# Plugins and their latest versions
|
||||
$plugins = {
|
||||
'com.google.protobuf' => '0.8.0',
|
||||
'us.kirchmeier.capsule' => '1.0.2',
|
||||
};
|
||||
|
||||
while (<>) {
|
||||
for $plugin (keys %$plugins) {
|
||||
my $ver = $plugins->{$plugin};
|
||||
s/^(\s*id\s*[\'\"]\Q$plugin\E[\'\"]\s*version\s*)\S+/${1}'$ver'/i;
|
||||
}
|
||||
print;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
id "us.kirchmeier.capsule" version "1.0.1"
|
||||
id 'com.google.protobuf' version '0.7.0'
|
||||
id "us.kirchmeier.capsule" version '1.0.2'
|
||||
id 'com.google.protobuf' version '0.8.0'
|
||||
}
|
||||
|
||||
apply plugin: 'java'
|
||||
|
|
Loading…
Reference in New Issue