Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] How to install renamed Tycho product into maven repository

I tried to use the new Tycho feature for renaming the produced artifact. The zip files are renamed correctly under the target/products directory, but when Maven installs them to C:\.m2, they will have the original name.

<configuration>
    <products>
        <product>
            <id>my.product.id</id>
            <archiveFileName>xyz</archiveFileName>
        </product>
    </products> 
</configuration>

Result in target/products directory: xyz-win32.win32.x86.zip

Result in C:\.m2...\: my.product.id-win32.win32.x86.zip

Is there another place to configure this?


Back to the top