You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by "Joe Ocaba (JIRA)" <ji...@apache.org> on 2010/11/08 07:05:06 UTC

[jira] Updated: (NPANDAY-314) Adding a Maven artifact from VS plugin generates NPANDAY-180-017 error

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

Joe Ocaba updated NPANDAY-314:
------------------------------

    Fix Version/s:     (was: 2.0)
                   2.x

> Adding a Maven artifact from VS plugin generates NPANDAY-180-017 error
> ----------------------------------------------------------------------
>
>                 Key: NPANDAY-314
>                 URL: https://issues.apache.org/jira/browse/NPANDAY-314
>             Project: NPanday
>          Issue Type: Bug
>    Affects Versions: 2.0
>            Reporter: correc00
>            Assignee: Joe Ocaba
>            Priority: Minor
>             Fix For: 2.x
>
>
> When adding a Maven artifact from the VS Plugin the dependency entry in the pom file cannot be found, the following example illustrates the problem:
> The entry below is inserted into the POM when the artifact is added through the VS plugin
>  <dependency>
>       <groupId>Solution1</groupId>
>       <artifactId>ClassLibrary1</artifactId>
>       <version>1.0-SNAPSHOT</version>
>       <type>dotnet-library</type>
>     </dependency>
> The correct entry required for mvn compile and install requires a "." before the group Id:
>  <dependency>
>       <groupId>.Solution1</groupId>
>       <artifactId>ClassLibrary1</artifactId>
>       <version>1.0-SNAPSHOT</version>
>       <type>dotnet-library</type>
>     </dependency>
> See attached gif for the actual error.

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