Mercurial > public > develkit
comparison sonar-ant.xml @ 35:7df554d8c4c1
CM-125: correct error in bundlor property mapping
author | smith@nwoca.org |
---|---|
date | Sat, 07 May 2011 11:09:46 -0400 |
parents | 2704c479a05f |
children | f1144aa0c01b |
comparison
equal
deleted
inserted
replaced
34:2704c479a05f | 35:7df554d8c4c1 |
---|---|
14 <ssdt:import-ant file="jacoco-ant.xml"/> | 14 <ssdt:import-ant file="jacoco-ant.xml"/> |
15 | 15 |
16 <ssdtant:add-dependency target="init" depends="-sonar-init"/> | 16 <ssdtant:add-dependency target="init" depends="-sonar-init"/> |
17 | 17 |
18 <target name="-sonar-init"> | 18 <target name="-sonar-init"> |
19 <echo message="Sonar: Active"/> | 19 <if> |
20 <isset property="sonar.enabled"/> | |
21 <then> | |
22 <echo message="Sonar: Active"/> | |
23 </then> | |
24 </if> | |
20 <if> | 25 <if> |
21 <contains string="${ant.project.invoked-targets}" substring="sonar"/> | 26 <contains string="${ant.project.invoked-targets}" substring="sonar"/> |
22 <then> <property name="ignore.failing.tests" value="true"/> </then> | 27 <then> |
28 <property name="ignore.failing.tests" value="true"/> | |
29 </then> | |
23 </if> | 30 </if> |
24 <property name="sonar.active" value="true"/> | 31 <property name="sonar.active" value="true"/> |
25 </target> | 32 </target> |
26 | 33 |
27 <target name="-check-sonar"> | 34 <target name="-check-sonar"> |