我已经设置了Maven和Sonar来分析.NET项目,它适用于winforms项目。但是,当我添加一个MVC项目时,它会提供构建失败,因为它找不到System.Web.MVC.dll文件。我有一个Fx-Cop插件,作为Sonar的一部分运行。 解决这个问题的一种方法是打包dll,将local = true复制到项目中。但是我不想这样做(包装MVC文件的任何问题都没有?)
如何向MVC dll添加依赖项?我跟着this example并添加如下:
<dependencies>
<dependency>
<groupId>artifact_group_id</groupId>
<artifactId>System.WEb.MVC</artifactId>
<version>4.0.30319</version>
<type>library</type>
<scope>system</scope>
<systemPath>C:\DOTNET\DLLS\System.Web.Mvc.dll</systemPath>
</dependency>
</dependencies>
我仍然遇到由FX-Cop引起的构建失败。查看FX-Cop日志,我收到如下消息:
在读取模块“MyTestMvcApp”时遇到以下错误:无法解析程序集引用:System.Web.Mvc,Version = 3.0.0.0,Culture = neutral,PublicKeyToken = 31bf3856ad364e35。
我正在使用apache-maven-3.0.2和sonar-3.2。任何人都可以帮忙吗?
这是完整的POM.XML文件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Test</groupId>
<artifactId>Sonar.For.NET.Test</artifactId>
<version>1.0</version>
<name>Testing </name>
<packaging>netpack</packaging>
<properties>
<visual.studio.solution>TestProjectsForSonarBuild.sln</visual.studio.solution>
<visual.test.project.pattern>*.Tests;*Test</visual.test.project.pattern>
<dotnet.tool.version>4.0</dotnet.tool.version>
<sonar.language>cs</sonar.language>
</properties>
<dependencies>
<dependency>
<groupId>artifact_group_id</groupId>
<artifactId>System.WEb.MVC</artifactId>
<version>4.0.30319</version>
<type>library</type>
<scope>system</scope>
<systemPath>C:\DOTNET\DLLS\System.Web.Mvc.dll</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.sonar-plugins.dotnet</groupId>
<artifactId>maven-dotnet-plugin</artifactId>
<version>0.6</version>
<extensions>true</extensions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<configuration>
<toolVersion>3.5</toolVersion>
<buildConfigurations>Debug</buildConfigurations>
<rebuild>true</rebuild>
<language>cs</language>
</configuration>
</plugin>
</plugins>
</build>
</project>
感谢您的时间。
答案 0 :(得分:0)
您可以使用the documentation page for the FxCop plugin中所述的“sonar.fxcop.assemblyDependencyDirectories”属性。
所以你有2个解决方案:
您的构建过程会在临时文件夹中复制“System.Web.MVC.dll”,您可以通过此属性引用该文件夹
或者您直接引用可以找到此DLL的绝对路径(但您的属性可能不适用于不同的环境/服务器)