On Wed, Sep 10, 2008 at 6:46 AM, <[EMAIL PROTECTED]> wrote:
> URL: http://svn.apache.org/viewvc?rev=693493&view=rev
> Log:
> review packaging to ext mapping (related to IVY-899)
>
> Modified:
>
> ant/ivy/core/trunk/src/java/org/apache/ivy/plugins/parser/m2/PomModuleDe
> scriptorBuilder.java
>
> + private static final Collection/*<String>*/ JAR_PACKAGINGS =
> Arrays.asList(
> + new String[] {"ejb", "bundle", "maven-plugin"});
>
>
> if ("pom".equals(packaging)) {
> // no artifact defined!
> return;
> - } else if ("ejb".equals(packaging)) {
> + } else if (JAR_PACKAGINGS.contains(packaging)) {
> ext = "jar";
> } else {
> ext = packaging;
> }
>
>
> Not sure what JAR_PACKAGINGS should be. But if it lists all possible
> packagings, shouldnt "pom" be listed there too?
It lists only packagings for which the ext should be jar. pom packaging is
already handled by the if("pom".equals(packaging)) line.
Xavier
>
>
> Jan
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Xavier Hanin - Independent Java Consultant
BordeauxJUG co leader - http://www.bordeauxjug.org/
Blogger - http://xhab.blogspot.com/
Apache Ivy Creator - http://ant.apache.org/ivy/