Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:Tycho/Additional Tools

Revision as of 12:37, 23 September 2011 by Nickboldt.gmail.com (Talk | contribs)

How can I name the destination repo?

Ant:

		<property name="URL" value="http://dist.springsource.com/release/TOOLS/update/e3.7/" />
		<p2.mirror>
			<repository location="file:${destination}/2.6.0.201103160035/" name="SpringIDE plugins for Eclipse 3.7" />
			< source>
				<repository location="${URL}" />
			</ source>
		</p2.mirror>

Maven:

I can only set a destination path:

	   <destination>${project.build.directory}/site</destination>

And while the *source* can include nested properties...

					 < source>
						<repository>
							<url>http://dist.springsource.com/release/TOOLS/update/e3.7</url>
							<layout>p2</layout>
						</repository>
					</ source>

... I can't do the same for the *destination*:

<destination> <repository> <url>${project.build.directory}/site</url> <layout>p2</layout> <name>SpringIDE plugins for eclipse 3.7</name> </repository> </destination>

Back to the top