Skip to content

Commit

Permalink
Don't use the sonarsource parent pom
Browse files Browse the repository at this point in the history
Declare test scope for mockito-core
  • Loading branch information
steven-turner committed Apr 6, 2016
1 parent fc05732 commit dd9c383
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.sonarsource.parent</groupId>
<artifactId>parent</artifactId>
<version>28</version>
</parent>

<groupId>com.jirav.sonarqube.auth.google</groupId>
<artifactId>sonar-auth-google-plugin</artifactId>
<version>0.5-SNAPSHOT</version>
Expand All @@ -18,7 +12,6 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.pluginClass>com.jirav.sonarqube.auth.google.AuthGooglePlugin</sonar.pluginClass>
<gitRepositoryName>sonar-auth-google</gitRepositoryName>
<sonar.buildVersion>5.4</sonar.buildVersion>
<jdk.min.version>1.7</jdk.min.version>
Expand Down Expand Up @@ -100,6 +93,7 @@
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.10.19</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.hamcrest</groupId>
Expand All @@ -114,4 +108,18 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.sonarsource.sonar-packaging-maven-plugin</groupId>
<artifactId>sonar-packaging-maven-plugin</artifactId>
<version>1.15</version>
<extensions>true</extensions>
<configuration>
<pluginClass>com.jirav.sonarqube.auth.google.AuthGooglePlugin</pluginClass>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit dd9c383

Please sign in to comment.