我的应用程序中有一些使用Sonar Java API 4.2的方法。但是,我已升级到5.6.1并且无法实现这些方法的替换。
org.sonar.api.resources.Project.path();
我尝试使用SensorContext.fileSystem().baseDir().toString()
作为替代品。功能是否相同?
在org.sonar.api.batch.Sensor.analyse(Project project,SensorContext context)
中,Project和SensorContext已被弃用,我在新Sensor
界面中仅查看了describe(SensorDescriptor descriptor)
和execute(SensorContext context)
的两种新方法。如何像以前一样输入项目路径?
请帮忙!谢谢!