add netvirt project settings macro
[releng/builder.git] / jjb / include-raw-check-poms.sh
1 #!/bin/bash
2
3 # @License EPL-1.0 <http://spdx.org/licenses/EPL-1.0>
4 ##############################################################################
5 # Copyright (c) 2015 The Linux Foundation and others.
6 #
7 # All rights reserved. This program and the accompanying materials
8 # are made available under the terms of the Eclipse Public License v1.0
9 # which accompanies this distribution, and is available at
10 # http://www.eclipse.org/legal/epl-v10.html
11 #
12 # Contributors:
13 #   Thanh Ha (The Linux Foundation) - Initial implementation
14 ##############################################################################
15
16 # Clear workspace
17 rm -rf *
18
19 # Create python script to parse json
20 cat > ${WORKSPACE}/parse_json.py << EOF
21 import json
22 import sys
23
24 obj=json.load(sys.stdin)
25 for key in obj.keys():
26     print(key)
27
28 EOF
29
30 # Clone all ODL projects
31 curl -s --header "Accept: application/json" \
32     https://git.opendaylight.org/gerrit/projects/ | \
33     tail -n +2 > ${WORKSPACE}/projects.json
34 for p in `cat ${WORKSPACE}/projects.json | python ${WORKSPACE}/parse_json.py`
35 do
36     # Ignore non-projects and archived projects
37     if [ "$p" == "All-Users" ] || \
38        [ "$p" == "affinity" ] || \
39        [ "$p" == "integration" ] || \
40        [ "$p" == "net-virt-platform" ] || \
41        [ "$p" == "opendove" ] || \
42        [ "$p" == "plugin2oc" ]
43     then
44         continue
45     fi
46     mkdir -p `dirname "$p"`
47     git clone "https://git.opendaylight.org/gerrit/$p.git" "$p"
48 done
49
50 # Check pom.xml for <repositories> and <pluginRepositories>
51 FILE=repos.txt
52
53 find . -name pom.xml | xargs grep -i '<repositories>\|<pluginRepositories>' > $FILE
54 [[ $(tr -d "\r\n" < $FILE|wc -c) -eq 0 ]] && rm $FILE
55
56 if [ -a $FILE ]
57 then
58     cat $FILE
59     echo "[ERROR] Repos with <repositories> and/or <pluginRepositories> sections found!"
60     exit 1
61 fi