-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Google Checkstyle standard * Add LGTM badge * Adjust checkstyle badge * Add log statements * Add Code Climate badges * Add Funding button Fixes #5 Fixes #1
- Loading branch information
Showing
14 changed files
with
983 additions
and
568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#github: aensley | ||
custom: https://paypal.me/AndrewEnsley | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
dist: trusty | ||
language: java | ||
jdk: | ||
- oraclejdk11 | ||
- oraclejdk8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+3.79 MB
dist/sonar-teams-notifier-1.0.jar → dist/sonar-teams-notifier-1.1.1.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,31 +6,55 @@ | |
|
||
<groupId>com.andrewensley.sonarteamsnotifier</groupId> | ||
<artifactId>sonar-teams-notifier</artifactId> | ||
<version>1.0</version> | ||
<version>1.1.1</version> | ||
|
||
<packaging>sonar-plugin</packaging> | ||
|
||
<name>Sonar Teams Notifier</name> | ||
<description>Sends notifications to WebEx Teams</description> | ||
<url>https://github.com/aensley/sonar-teams-notifier</url> | ||
|
||
<properties> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
<sonar.pluginName>Sonar Teams Notifier</sonar.pluginName> | ||
<project.targetJdk>11</project.targetJdk> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
<project.targetJdk>1.8</project.targetJdk> | ||
<maven.compiler.source>1.8</maven.compiler.source> | ||
<maven.compiler.target>1.8</maven.compiler.target> | ||
|
||
<!-- JaCoCo support --> | ||
<argLine /> | ||
<sonar.version>7.9.1</sonar.version> | ||
</properties> | ||
|
||
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://www.opensource.org/licenses/mit-license.php</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
|
||
<developers> | ||
<developer> | ||
<id>aensley</id> | ||
<name>Andrew Ensley</name> | ||
<url>https://github.com/aensley</url> | ||
<organization>Andrew Ensley</organization> | ||
<organizationUrl>https://andrewensley.com</organizationUrl> | ||
</developer> | ||
</developers> | ||
|
||
<organization> | ||
<name>Andrew Ensley</name> | ||
<url>https://andrewensley.com</url> | ||
</organization> | ||
|
||
<scm> | ||
<connection>scm:git:[email protected]:aensley/sonar-teams-notifier.git</connection> | ||
<url>scm:git:[email protected]:aensley/sonar-teams-notifier.git</url> | ||
<developerConnection>scm:git:[email protected]:aensley/sonar-teams-notifier.git</developerConnection> | ||
<tag>teams-1.0</tag> | ||
<tag>v${project.version}</tag> | ||
</scm> | ||
|
||
<dependencies> | ||
|
@@ -43,13 +67,25 @@ | |
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson --> | ||
<dependency> | ||
<groupId>com.google.code.gson</groupId> | ||
<artifactId>gson</artifactId> | ||
<version>2.8.5</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
<version>4.5.9</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
<version>1.2</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
|
||
<!-- Testing dependencies --> | ||
<dependency> | ||
<groupId>org.junit.jupiter</groupId> | ||
|
@@ -73,7 +109,6 @@ | |
|
||
<build> | ||
<plugins> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-enforcer-plugin</artifactId> | ||
|
@@ -138,6 +173,35 @@ | |
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.puppycrawl.tools</groupId> | ||
<artifactId>checkstyle</artifactId> | ||
<version>8.23</version> | ||
</dependency> | ||
</dependencies> | ||
<configuration> | ||
<configLocation>google_checks.xml</configLocation> | ||
<encoding>UTF-8</encoding> | ||
<consoleOutput>true</consoleOutput> | ||
<failsOnError>true</failsOnError> | ||
<violationSeverity>warning</violationSeverity> | ||
</configuration> | ||
<executions> | ||
<execution> | ||
<id>validate</id> | ||
<phase>validate</phase> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
|
@@ -155,15 +219,12 @@ | |
<version>1.18.0.372</version> | ||
<extensions>true</extensions> | ||
<configuration> | ||
<!-- the entry-point class that extends org.sonar.api.SonarPlugin --> | ||
<pluginClass>com.andrewensley.sonarteamsnotifier.TeamsNotifierPlugin</pluginClass> | ||
|
||
<!-- advanced properties can be set here. See paragraph "Advanced Build Properties". --> | ||
<jarName>sonar-teams-notifier-${project.version}</jarName> | ||
<pluginKey>sonar-teams-notifier</pluginKey> | ||
<pluginName>Sonar Teams Notifier</pluginName> | ||
<pluginDescription>Sends notifications to WebEx Teams</pluginDescription> | ||
<sonarQubeMinVersion>6.7</sonarQubeMinVersion> | ||
<sonarQubeMinVersion>7.9.1</sonarQubeMinVersion> | ||
<pluginUrl>https://github.com/aensley/sonar-teams-notifier</pluginUrl> | ||
<pluginIssueTrackerUrl>https://github.com/aensley/sonar-teams-notifier/issues</pluginIssueTrackerUrl> | ||
<pluginSourcesUrl>https://github.com/aensley/sonar-teams-notifier</pluginSourcesUrl> | ||
|
@@ -173,4 +234,20 @@ | |
</plugin> | ||
</plugins> | ||
</build> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<reportSets> | ||
<reportSet> | ||
<reports> | ||
<report>checkstyle</report> | ||
</reports> | ||
</reportSet> | ||
</reportSets> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.