Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-dev] Customizing qualifier?

There is no <qualifier> parameter. The documentation is quite clear that
only <format> and <forceContextQualifier> parameters are expected to
work. Use -DforceContextQualifier command line parameter if you want the
build to use version qualifier set externally. Use
<format>'v'yyyyMMddHHmm</format> or any other SimpleDateFormat if you
want Tycho to use timestamp-based qualifier with specified format.

--
Regards,
Igor

On 12-05-24 6:48 PM, Anna Dushistova wrote:
I added the following to my parent pom.xml:
<plugin>
           <groupId>org.eclipse.tycho</groupId>
           <artifactId>tycho-packaging-plugin</artifactId>
           <version>${tycho-version}</version>
           <configuration>
             <qualifier>v${buildQualifier}</qualifier>
           </configuration>
  </plugin>
and now I have a problem with source bundles:
[ERROR] Failed to execute goal
org.eclipse.tycho:tycho-p2-publisher-plugin:0.14.1:publish-products
(default-publish-products) on project org.eclipse.tm.repo: Execution
default-publish-products of goal
org.eclipse.tycho:tycho-p2-publisher-plugin:0.14.1:publish-products
failed: "No solution found because the problem is unsatisfiable.":
["Unable to satisfy dependency from
org.eclipse.rse.core.source.feature.group 3.4.0.v201205241319 to
org.eclipse.rse.core.source [3.3.0.v201205241319]."...

Should I do something with my tycho-source-plugin configuration as well?
Thanks!
Anna.

On Wed, May 23, 2012 at 12:12 PM, Sievers, Jan<jan.sievers@xxxxxxx>  wrote:
see docs
http://www.eclipse.org/tycho/sitedocs/tycho-packaging-plugin/build-qualifier-mojo.html#format

-----Original Message-----
From: tycho-dev-bounces@xxxxxxxxxxx [mailto:tycho-dev-bounces@xxxxxxxxxxx] On Behalf Of Anna Dushistova
Sent: Mittwoch, 23. Mai 2012 03:32
To: Tycho developers list
Subject: Re: [tycho-dev] Customizing qualifier?

What about "vDDMMYYYY"? Basically I was requested to add 'v' in front
of the current qualifier.

Thanks!
Anna.

On Wed, May 23, 2012 at 4:33 AM, Igor Fedorenko<igor@xxxxxxxxxxxxxx>  wrote:
If by "vNNNNN" you mean "v00001", "v00002" and so on, then no, Tycho
cannot automatically generate version qualifiers like this, so you will
have to generate it externally.

If you need custom timestamp format, then you can use<format>
tycho-packaging-plugin parameter, which takes the same format strings as
SimpleDateFormat.

--
Regards,
Igor


On 12-05-22 7:32 PM, Anna Dushistova wrote:

Hi All,
Can tycho generate "vNNNNN" qualifiers?
Is this something tycho-packaging-plugin can help with?


Thanks!
Anna.
_______________________________________________
tycho-dev mailing list
tycho-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-dev

_______________________________________________
tycho-dev mailing list
tycho-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-dev
_______________________________________________
tycho-dev mailing list
tycho-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-dev
_______________________________________________
tycho-dev mailing list
tycho-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-dev
_______________________________________________
tycho-dev mailing list
tycho-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/tycho-dev


Back to the top