Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Eclipse repository file name

Sure, its straightforward, in the pom.xml of your eclipse-repository module do this:

    <build>
        <plugins>
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>tycho-p2-repository-plugin</artifactId>
                <version>${tycho-version}</version>
                <configuration>
                    <finalName>artifact_name_${unqualifiedVersion}.${buildQualifier}</finalName>
                </configuration>
            </plugin>
        </plugins>
    </build>


On Thu, Oct 17, 2013 at 7:59 PM, Igor Zapletnev <igor.zapletnev@xxxxxxxxx> wrote:
I am using "eclipse-repository" packaging type to build my p2 repository. Also my repo will be automatically packed in zip file with name artifact_name_version.zip. Is where any way to specify name pattern?

Thanks,
Igor

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




--
Greg Amerson
Liferay Developer Tools
Liferay, Inc. www.liferay.com

Back to the top