[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[List Home]
|
[tycho-user] Tycho is taking the wrong POM-FIRST source jar.
|
- From: Cristiano Gavião <cvgaviao@xxxxxxxxx>
- Date: Tue, 28 Feb 2012 12:28:20 -0300
- Authentication-results: mr.google.com; spf=pass (google.com: domain of cvgaviao@gmail.com designates 10.236.182.42 as permitted sender) smtp.mail=cvgaviao@gmail.com; dkim=pass header.i=cvgaviao@gmail.com
- Delivered-to: tycho-user@eclipse.org
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject :content-type:content-transfer-encoding; bh=rk9qJFxOBNkIKsKOQQtG7ikcgorVoT8cpTZDhdiO/2M=; b=lGvSMUF8+SoVl0Dr6LMVlrfABRoSKyYsuBYpO/thAHoogrDMEL4UqV/ySKlGiJg+ms K1+jQ8Lu0jx8TBk+xLF1w1CvjZYcX8x3CH2zJ4MukQQo0MKqAa+duk/gmm95SxZsLJfm siWWK0QDtSZM0G3RFK3wA2zYp11J4Z1zcx3+0=
- User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2
Hi,
I've included source feature in my P2 and I observe a strange behavior.
In my local repository I have this bundles created in a pom-first
reactor, using maven-source-plugin and maven-bundle-plugin (attention to
the size):
org.jbehave.osgi.web-0.0.3-SNAPSHOT.jar - 11 MB on disk
org.jbehave.osgi.web-0.0.3-SNAPSHOT-sources.jar - 4 KB on disk (1.610 bytes)
In the source feature project , in feature.xml I've added this:
<plugin
id="org.jbehave.osgi.web.source"
download-size="1"
install-size="2"
version="0.0.3.qualifier"
unpack="false"/>
In the source feature project pom I've added this dependency:
<dependency>
<groupId>org.jbehave.osgi</groupId>
<artifactId>org.jbehave.osgi.web</artifactId>
<version>${project.version}</version>
<classifier>sources</classifier>
</dependency>
The build occurs without any errors, but when I was use the generated p2
I noted the time that it was taking to get the source and investigating
I found the size was identical in both files. This is the files in P2:
org.jbehave.osgi.web_0.0.3.qualifier.jar - 11 MB on disk (10.967.778 bytes)
org.jbehave.osgi.web.source_0.0.3.qualifier.jar - 11 MB on disk
(10.967.778 bytes)
It is a know issue or am I forgetting something here ?
regards,
Cristiano