Skip to content

Commit

Permalink
artifactId in POM must match bundleId in MANIFETST.MF
Browse files Browse the repository at this point in the history
...otherwise tycho-source-plugin is unable to find .source bundle
  • Loading branch information
manandbytes committed Jun 21, 2011
1 parent be15f1e commit 1a7e30f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -15,7 +15,7 @@
<version>${version}-SNAPSHOT</version> <version>${version}-SNAPSHOT</version>
</parent> </parent>


<artifactId>${artifactId}</artifactId> <artifactId>${groupId}.${artifactId}</artifactId>
<packaging>eclipse-plugin</packaging> <packaging>eclipse-plugin</packaging>


<name>Minerva Core Plug-in</name> <name>Minerva Core Plug-in</name>
Expand Down
Expand Up @@ -15,7 +15,7 @@
<version>${version}-SNAPSHOT</version> <version>${version}-SNAPSHOT</version>
</parent> </parent>


<artifactId>${artifactId}</artifactId> <artifactId>${groupId}.${artifactId}</artifactId>
<packaging>eclipse-plugin</packaging> <packaging>eclipse-plugin</packaging>


<name>${projectName} UI Plug-in</name> <name>${projectName} UI Plug-in</name>
Expand Down

0 comments on commit 1a7e30f

Please sign in to comment.