Skip to content

Commit

Permalink
Merge pull request #3 from bellingard/SonarConfig
Browse files Browse the repository at this point in the history
Add Sonar config files
  • Loading branch information
grozeille committed Apr 5, 2012
2 parents 3106ae5 + 1c16eee commit 8e43173
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bin
obj
packages
*.suo
*.suo
.sonar
23 changes: 23 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<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>org.codehaus.sonar-plugins.dotnet.tools</groupId>
<artifactId>dependency-parser</artifactId>
<version>1.2-SNAPSHOT</version>
<packaging>netpack</packaging>

<properties>
<visual.studio.solution>DependencyParser.sln</visual.studio.solution>
<dotnet.tool.version>4.0</dotnet.tool.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.sonar-plugins.dotnet</groupId>
<artifactId>maven-dotnet-plugin</artifactId>
<version>0.6</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>

</project>
8 changes: 8 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
sonar.projectKey=org.codehaus.sonar-plugins.dotnet.tools:dependency-parser
sonar.projectName=.NET Dependency Parser
sonar.projectVersion=1.2-SNAPSHOT
sonar.projectDescription=.NET component that parses IL to compute dependencies between classes

sources=.
sonar.language=cs
sonar.donet.visualstudio.testProjectPattern=*.Test

0 comments on commit 8e43173

Please sign in to comment.