Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] building feature error on dependency

I made a typo, I modified to 0.0.0 in feature.xml.
Nice, now the error message says: 
[ERROR]   Missing requirement: sandbox.feature.feature.group 6.5.4.3 requires 'joda-time 0.0.0' but it could not be found

I'm sure I made a simple mistake... so new to tycho/maven world.

On Wed, Mar 4, 2015 at 5:21 PM, Igor Fedorenko <igor@xxxxxxxxxxxxxx> wrote:
Version 0.0.0.0 seems to be wrong. Did you mean 0.0.0?

--
Regards,
Igor


On 2015-03-04 11:14, titimoby wrote:
Hi,

I try to reduce at minimum the case I have.
The goal of the complete project is to build an eclipse-repository from
a feature also built.

For the moment, I'm stuck during feature building.
As an example, I added joda-time to the plugin in feature.xml.

<plugin
          id="joda-time"
          download-size="0"
          install-size="0"
          version="0.0.0.0"
          unpack="false"/>

As an example, I added joda-time to the plugin in feature.xml.
And I added the corresponding dependency in pom.xml:

<dependencies>
<dependency>
<groupId>joda-time</groupId>
     <artifactId>joda-time</artifactId>
<version>2.7</version>
</dependency>
</dependencies>

The error shows:

[ERROR]   Missing requirement: sandbox.feature.feature.group 6.5.4.3
requires 'joda-time [0.0.0.0]' but it could not be found

I attached the complete files if anyone has a suggestion, it will help.


_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user

_______________________________________________
tycho-user mailing list
tycho-user@xxxxxxxxxxx
To change your delivery options, retrieve your password, or unsubscribe from this list, visit
https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top