Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #87 from derek63/add-sonar-config
Browse files Browse the repository at this point in the history
Define Sonar properties
  • Loading branch information
derek63 committed Sep 26, 2017
2 parents 23502b8 + 32633d5 commit b9dcba9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
9 changes: 7 additions & 2 deletions lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,14 @@
<version>0.1.14-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>event-handler: ${project.groupId}|${project.artifactId}</name>
<artifactId>event-handler-lib</artifactId>

<properties>
<sonar.exclusions>**/*Test.java,**/*Exception.java</sonar.exclusions>
<sonar.projectName>event-handler-lib</sonar.projectName>
<!-- Override with -Dmetadata.outputDirectory= -->
<metadata.outputDirectory>${project.build.outputDirectory}</metadata.outputDirectory>
</properties>
<dependencies>
<!-- Camel and friends -->
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions lightblue/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,17 @@
<version>0.1.14-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>event-handler-lightblue</artifactId>

<name>event-handler: ${project.groupId}|${project.artifactId}</name>
<properties>
<version.event-handler-lib>0.1.14-SNAPSHOT</version.event-handler-lib>
<version.lightblue-notification-hook-model>0.1.3</version.lightblue-notification-hook-model>
<version.lightblue-java-generator>0.1.4</version.lightblue-java-generator>
<version.lightblue-client>5.9.0</version.lightblue-client>
<version.jackson>2.6.4</version.jackson>
<version.exec-maven-plugin>1.5.0</version.exec-maven-plugin>

<sonar.exclusions>**/*Test.java,**/*Exception.java</sonar.exclusions>
<sonar.projectName>event-handler-lightblue</sonar.projectName>
<!-- Override with -Dmetadata.outputDirectory= -->
<metadata.outputDirectory>${project.build.outputDirectory}</metadata.outputDirectory>
</properties>
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<artifactId>event-handler-parent</artifactId>
<packaging>pom</packaging>
<version>0.1.14-SNAPSHOT</version>
<name>esbtools: ${project.groupId}|${project.artifactId}</name>
<name>event-handler: ${project.groupId}|${project.artifactId}</name>
<description>Event Handler</description>
<url>https://github.com/esbtools/event-handler</url>

Expand Down Expand Up @@ -116,8 +116,9 @@
<version.maven-source-plugin>2.2.1</version.maven-source-plugin>
<version.maven-javadoc-plugin>2.9.1</version.maven-javadoc-plugin>
<version.jdk>1.8</version.jdk>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.projectName>esbtools: event-handler</sonar.projectName>
<sonar.exclusions>**/*Test.java,**/*Exception.java</sonar.exclusions>
</properties>

<dependencyManagement>
Expand Down

0 comments on commit b9dcba9

Please sign in to comment.