Fail the build if any of JARs is empty
This commit is contained in:
parent
a0d3b1e9e6
commit
e402765777
4
ant.spec
4
ant.spec
@ -372,6 +372,9 @@ install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
|
|||||||
|
|
||||||
for jar in build/lib/*.jar
|
for jar in build/lib/*.jar
|
||||||
do
|
do
|
||||||
|
# Make sure that installed JARs are not empty
|
||||||
|
jar tf ${jar} | egrep -q *.class
|
||||||
|
|
||||||
jarname=$(basename $jar .jar)
|
jarname=$(basename $jar .jar)
|
||||||
pomname="JPP.%{name}-${jarname}.pom"
|
pomname="JPP.%{name}-${jarname}.pom"
|
||||||
|
|
||||||
@ -610,6 +613,7 @@ cp -pr build/javadocs/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}
|
|||||||
- Remove dependencies on xerces-j2 and xml-commons-apis
|
- Remove dependencies on xerces-j2 and xml-commons-apis
|
||||||
- Convert %%global build_javadoc to conditional
|
- Convert %%global build_javadoc to conditional
|
||||||
- Remove bootstrap code
|
- Remove bootstrap code
|
||||||
|
- Fail the build if any of JARs is empty
|
||||||
|
|
||||||
* Mon Jun 03 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.9.1-2
|
* Mon Jun 03 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.9.1-2
|
||||||
- Enable unit tests
|
- Enable unit tests
|
||||||
|
Loading…
Reference in New Issue
Block a user