Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] tycho-eclipserun-plugin:0.18.1

>http://eclipse.org/tycho/sitedocs-extras/tycho-eclipserun-plugin/eclipse-run-mojo.html

Thanks, yes I think add link to the generated sources is a good idea!


On Wed, Aug 7, 2013 at 3:26 PM, Jeff MAURY <jeffmaury@xxxxxxxxxxxxx> wrote:
Igor,

you need to configure one or several P2 repository where OSGI artifacts required will be downloaded from.
Here is what I have in my POM:

            <configuration>
              <plugin>
                <groupId>org.eclipse.tycho.extras</groupId>
                <artifactId>tycho-eclipserun-plugin</artifactId>
                <version>${tycho-version}</version>
              </plugin>
              <goal>eclipse-run</goal>
              <configuration>
                <appArgLine>-consoleLog -application org.eclipse.equinox.p2.director -nosplash -repository "${project.baseUri}/target/repository" -destination "${project.build.directory}/products/com.syspertec.virtel.ide.product/win32/win32/x86" -installIUs ${features}</appArgLine>
                <repositories>
                  <repository>
                    <id>juno</id>
                    <layout>p2</layout>
                    <url>${platform-repository-url}</url>
                  </repository>
                </repositories>

Jeff


On Wed, Aug 7, 2013 at 10:17 AM, Igor Zapletnev <igor.zapletnev@xxxxxxxxx> wrote:

Hi I am trying to play with eclipse-run goal from example and I am getting next error:

[ERROR] Failed to execute goal org.eclipse.tycho.extras:tycho-eclipserun-plugin:0.18.1:eclipse-run (default) on project com._1c.g5.v8.dt.mcore: The parameters 'repositories' for goal org.eclipse.tycho.extras:tycho-eclipserun-plugin:0.18.1:eclipse-run are missing or invalid -> [Help 1]

No information provided about "repositories" parameter in the wiki


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




--
Jeff MAURY


"Legacy code" often differs from its suggested alternative by actually working and scaling.
 - Bjarne Stroustrup

http://www.jeffmaury.com
http://riadiscuss.jeffmaury.com
http://www.twitter.com/jeffmaury

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



Back to the top