Convert 2.5.x MiMa excludes to subdirectory style

Using this script:

```sh

set -ex

FILE=$1
DIR=`dirname $FILE`
TMP_FILE=$DIR/_existing.excludes
FINAL_FILE=$DIR/2.5.x.backwards.excludes/_existing.excludes

mv $FILE $TMP_FILE
mkdir $DIR/2.5.x.backwards.excludes
(echo "# This file contains all excludes added before changing to the subdirectory style" && cat $TMP_FILE) > $FINAL_FILE
rm $TMP_FILE
git add $FINAL_FILE
```
This commit is contained in:
Johannes Rudolph 2019-09-11 11:36:41 +02:00 committed by Arnout Engelen
parent ba67d6205c
commit 650068aa45
No known key found for this signature in database
GPG key ID: BB8C0F854A1E2105
14 changed files with 18 additions and 1 deletions

View file

@ -1,2 +1,3 @@
# This file contains all excludes added before changing to the subdirectory style
# Upgrade to protobuf 3
ProblemFilters.exclude[Problem]("akka.cluster.ddata.protobuf.*")