Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/eclipse/8.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
第谷;Eclipse平台过滤器_Eclipse_Maven_Tycho - Fatal编程技术网

第谷;Eclipse平台过滤器

第谷;Eclipse平台过滤器,eclipse,maven,tycho,Eclipse,Maven,Tycho,我正在使用tycho自动构建我的RCP应用程序(实际上,我采用了中报告的结构)。我不得不说,它工作得非常好,我能够支持我需要的所有三种体系结构(linux x86、linux x86_64、win32 x86) 此外,应用程序的一部分需要一些本机代码,我用片段()提供这些代码。每个片段都是针对特定的体系结构定制的,因此在片段的清单中指定它: Eclipse-PlatformFilter: (& (osgi.os=linux) (osgi.arch=x86_64)) 但是,如果我运行mv

我正在使用tycho自动构建我的RCP应用程序(实际上,我采用了中报告的结构)。我不得不说,它工作得非常好,我能够支持我需要的所有三种体系结构(linux x86、linux x86_64、win32 x86)

此外,应用程序的一部分需要一些本机代码,我用片段()提供这些代码。每个片段都是针对特定的体系结构定制的,因此在片段的清单中指定它:

Eclipse-PlatformFilter: (& (osgi.os=linux) (osgi.arch=x86_64))
但是,如果我运行
mvn安装
我将获得:

[ERROR] Internal error: java.lang.RuntimeException: "Problems resolving provisioning plan.": ["tycho.jni.linux 1.0.0.qualifier cannot be installed in this environment because its filter is not applicable."] -> [Help 1]
org.apache.maven.InternalErrorException: Internal error: java.lang.RuntimeException: "Problems resolving provisioning plan.": ["tycho.jni.linux 1.0.0.qualifier cannot be installed in this environment because its filter is not applicable."]
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:168)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: java.lang.RuntimeException: "Problems resolving provisioning plan.": ["tycho.jni.linux 1.0.0.qualifier cannot be installed in this environment because its filter is not applicable."]
    at org.eclipse.tycho.p2.impl.resolver.ProjectorResolutionStrategy.resolve(ProjectorResolutionStrategy.java:84)
    at org.eclipse.tycho.p2.impl.resolver.P2ResolverImpl.resolveProject(P2ResolverImpl.java:324)
    at org.eclipse.tycho.p2.impl.resolver.P2ResolverImpl.resolveProject(P2ResolverImpl.java:293)
    at org.eclipse.tycho.p2.facade.P2TargetPlatformResolver.doResolvePlatform(P2TargetPlatformResolver.java:389)
    at org.eclipse.tycho.p2.facade.P2TargetPlatformResolver.resolvePlatform(P2TargetPlatformResolver.java:150)
    at org.eclipse.tycho.core.resolver.DefaultTychoDependencyResolver.resolveProject(DefaultTychoDependencyResolver.java:90)
    at org.eclipse.tycho.core.maven.TychoMavenLifecycleParticipant.afterProjectsRead(TychoMavenLifecycleParticipant.java:91)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:273)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
    ... 11 more
Caused by: org.eclipse.core.runtime.CoreException: Problems resolving provisioning plan.
    at org.eclipse.tycho.p2.impl.resolver.ProjectorResolutionStrategy.resolve(ProjectorResolutionStrategy.java:85)
    ... 19 more

请注意,相同的项目没有
eclipseplatformfilter
可以正确编译。。。我遗漏了什么?

尝试缩小片段pom.xml的环境范围,使其仅与Eclipse PlatformFilter匹配:


org.eclipse.tycho
目标平台配置
${tycho版本}
linux
gtk
x86_64

我遇到了与Matteo相同的问题,您的解决方案对我很有效!:)+1抱歉,在问了这个问题后,我不得不换个话题。。。但是,既然这个答案适合你,我就接受它!:)