Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] How to change IU name of category in a repository project

I find that for any category-def
 
   <category-def name="com.lgc.mycategory" label="LGC Category"/>
 
The resulting IU in the produced repository is ${buildQualifier}.com.lgc.mycategory.
 
   <unit id='81338.com.lgc.mycategory' version='1.0.0.A8--cJR4nh_R1ikN'>
 
I have this in the pom.xml
 
      <plugin>
        <groupId>org.eclipse.tycho</groupId>
        <artifactId>tycho-p2-repository-plugin</artifactId>
        <version>${tychoVersion}</version>
        <configuration>
             <repositoryName>LGC Repository</repositoryName>
             <finalName>${project.artifactId}-${buildQualifier}</finalName>
             <includeAllDependencies>false</includeAllDependencies>
        </configuration>
      </plugin>
 
And that affects the display name and the zip file name. How do I get rid of the buildQualifier in the IU name?
 

This e-mail, including any attached files, may contain confidential and privileged information for the sole use of the intended recipient. Any review, use, distribution, or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive information for the intended recipient), please contact the sender by reply e-mail and delete all copies of this message.

Back to the top