标签:eclipse builder launch launch configuration could not be found wowza
前边有篇博客《Eclipse 报 "The builder launch configuration could not be found" 错误的解决办法》介绍了 Eclipse 报错 "The builder launch configuration could not be found" 的解决办法,按那个办法处理之后,发现不报错了,但 ant 的自动构建没了。这样没法接受。<natures> <nature>com.wowza.wms.eclipse.sdk.WowzaMediaServerProNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures>
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>cloud-rts</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec> <natures> <nature>com.wowza.wms.eclipse.sdk.WowzaMediaServerProNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription>
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>cloud-rts</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> <buildCommand> <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> <triggers>auto,full,incremental,</triggers> <arguments> <dictionary> <key>LaunchConfigHandle</key> <value><project>/.externalToolBuilders/New_Builder.launch</value> </dictionary> </arguments> </buildCommand> </buildSpec> <natures> <nature>com.wowza.wms.eclipse.sdk.WowzaMediaServerProNature</nature> <nature>org.eclipse.jdt.core.javanature</nature> </natures> </projectDescription>
Eclipse Wowza 插件报 "The builder launch configuration could not be found" 错误的解决办法,布布扣,bubuko.com
Eclipse Wowza 插件报 "The builder launch configuration could not be found" 错误的解决办法
标签:eclipse builder launch launch configuration could not be found wowza
原文地址:http://blog.csdn.net/defonds/article/details/26371069