sonar-dotnet-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.dotnet</groupId> <artifactId>sonar-dotnet-core</artifactId> <version>10.9.1.115516</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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> <parent> <groupId>org.sonarsource.dotnet</groupId> <artifactId>sonar-dotnet</artifactId> <version>10.9.1.115516</version> </parent> <artifactId>sonar-dotnet-core</artifactId> <name>SonarSource :: .NET :: Core</name> <description>Share code between C# and VB.NET plugins</description> <properties> <protobuf.version>4.30.2</protobuf.version> <protobuf.compiler>${settings.localRepository}/com/google/protobuf/protoc/${protobuf.version}/protoc-${protobuf.version}-${os.detected.classifier}.exe</protobuf.compiler> <sonar.exclusions>target/generated-sources/protobuf/**</sonar.exclusions> </properties> <dependencies> <!-- provided at runtime --> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>provided</scope> </dependency> <!-- Compile dependencies --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.13.1</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>org.sonarsource.analyzer-commons</groupId> <artifactId>sonar-analyzer-commons</artifactId> </dependency> <dependency> <groupId>org.sonarsource.analyzer-commons</groupId> <artifactId>sonar-xml-parsing</artifactId> <version>${sonar.analyzer.commons.version}</version> </dependency> <!-- unit tests --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.19.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api-test-fixtures</artifactId> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api-impl</artifactId> </dependency> </dependencies> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.1</version> </extension> </extensions> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.6.0</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>compile-protobuf-sources</id> <phase>generate-sources</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <property name="proto.path" location="${project.basedir}/../analyzers/src/SonarAnalyzer.Core/Protobuf"/> <fileset id="fileset" dir="${proto.path}"> <include name="*.proto"/> </fileset> <pathconvert refid="fileset" property="protos" pathsep=" "/> <mkdir dir="${project.build.directory}/generated-sources/protobuf"/> <chmod file="${protobuf.compiler}" perm="u+x"/> <exec failonerror="true" executable="${protobuf.compiler}"> <arg value="--proto_path=${proto.path}"/> <arg value="--java_out=${project.build.directory}/generated-sources/protobuf"/> <arg line="${protos}"/> </exec> </target> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protoc</artifactId> <version>${protobuf.version}</version> <classifier>${os.detected.classifier}</classifier> <type>exe</type> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-protobuf-generated-sources</id> <phase>generate-sources</phase> <goals> <goal>add-source</goal> </goals> <configuration> <sources> <source>${project.build.directory}/generated-sources/protobuf</source> </sources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>