diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/build.xml | 10 | ||||
-rw-r--r-- | shared/ivy.xml | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/shared/build.xml b/shared/build.xml index 83dbe61b36..29f68ef643 100644 --- a/shared/build.xml +++ b/shared/build.xml @@ -24,8 +24,14 @@ <target name="publish-local" depends="jar"> <antcall target="common.publish-local" /> </target> + <target name="clean"> - <antcall target="common.clean"> - </antcall> + <antcall target="common.clean"/> + </target> + + <target name="tests"> + <!--<antcall target="common.tests.run" />--> + <echo>WHAT? No tests for ${module.name}!</echo> </target> + </project>
\ No newline at end of file diff --git a/shared/ivy.xml b/shared/ivy.xml index 595586bd05..a20956214b 100644 --- a/shared/ivy.xml +++ b/shared/ivy.xml @@ -10,6 +10,7 @@ <conf name="build" /> <conf name="build-provided" /> <conf name="ide" /> + <conf name="tests" /> </configurations> <publications> <artifact></artifact> |