You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Martijn Dashorst (JIRA)" <ji...@apache.org> on 2007/04/26 10:52:16 UTC

[jira] Closed: (WICKET-33) Ant jar target that doesn't depend on tests

     [ https://issues.apache.org/jira/browse/WICKET-33?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martijn Dashorst closed WICKET-33.
----------------------------------


> Ant jar target that doesn't depend on tests
> -------------------------------------------
>
>                 Key: WICKET-33
>                 URL: https://issues.apache.org/jira/browse/WICKET-33
>             Project: Wicket
>          Issue Type: Wish
>          Components: wicket
>    Affects Versions: 1.2.3
>            Reporter: Bernhard Frauendienst
>         Assigned To: Martijn Dashorst
>            Priority: Trivial
>
> I'd very much appreciate it, if the ant build file could get a jar target that doesn't depend on junit tests (those should be voluntary).
> Possible solutions:
> 1) Change "jar"-target dependency from "test" to "compile" and introduce a new "all"-target for both combined:
> 2) Keep the jar-target and create a new one that "skips" the tests (possible name: "jar-notest")
> A patch snippet for solution one is attached below:
> @@ -114,9 +114,10 @@
>                         />
>         </target>
> -       <target name="jar" depends="test" description="o Creates a JAR file for this package">
> +       <target name="jar" depends="compile" description="o Creates a JAR file for this package">
>                 <jar jarfile="${final.name}.jar"
>                         excludes="**/package.html"
>                         basedir="${build.main.classes}"/>
>         </target>
> +       <target name="all" depends="test,jar" description="o Runs the unit tests and creates a JAR file for this package"/>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.