forked from KocproZ/jenkins-discord
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from NotMyFault/feat/master/jdk-17
Add Java 17 compatibility, EOL JSR 305 and bump bom baseline
- Loading branch information
Showing
5 changed files
with
17 additions
and
14 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 |
---|---|---|
|
@@ -5,14 +5,12 @@ | |
<parent> | ||
<groupId>org.jenkins-ci.plugins</groupId> | ||
<artifactId>plugin</artifactId> | ||
<version>4.33</version> | ||
<version>4.46</version> | ||
<relativePath /> | ||
</parent> | ||
|
||
<name>Discord Notifier</name> | ||
<description>Discord Notifier allows you to send Discord embeds about your builds via Discord's webhooks. | ||
</description> | ||
<url>https://github.com/jenkinsci/discord-notifier-plugin/blob/master/README.md</url> | ||
<url>https://github.com/jenkinsci/discord-notifier-plugin</url> | ||
|
||
<groupId>nz.co.jammehcow</groupId> | ||
<artifactId>discord-notifier</artifactId> | ||
|
@@ -23,13 +21,12 @@ | |
<revision>1.4.15</revision> | ||
<changelist>999999-SNAPSHOT</changelist> | ||
<gitHubRepo>jenkinsci/discord-notifier-plugin</gitHubRepo> | ||
<jenkins.version>2.235.1</jenkins.version> | ||
<java.level>8</java.level> | ||
<jenkins.version>2.319.3</jenkins.version> | ||
<no-test-jar>false</no-test-jar> | ||
</properties> | ||
|
||
<scm> | ||
<connection>scm:git:git://github.com/${gitHubRepo}.git</connection> | ||
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection> | ||
<developerConnection>scm:git:[email protected]:${gitHubRepo}.git</developerConnection> | ||
<url>https://github.com/${gitHubRepo}</url> | ||
<tag>${scmTag}</tag> | ||
|
@@ -38,7 +35,7 @@ | |
<licenses> | ||
<license> | ||
<name>MIT License</name> | ||
<url>http://opensource.org/licenses/MIT</url> | ||
<url>https://opensource.org/licenses/MIT</url> | ||
</license> | ||
</licenses> | ||
|
||
|
@@ -73,8 +70,8 @@ | |
<dependencies> | ||
<dependency> | ||
<groupId>io.jenkins.tools.bom</groupId> | ||
<artifactId>bom-2.235.x</artifactId> | ||
<version>918.vae501d2cdc99</version> | ||
<artifactId>bom-2.319.x</artifactId> | ||
<version>1589.v952386a_7b_85a</version> | ||
<scope>import</scope> | ||
<type>pom</type> | ||
</dependency> | ||
|
@@ -85,7 +82,7 @@ | |
<dependency> | ||
<groupId>com.konghq</groupId> | ||
<artifactId>unirest-java</artifactId> | ||
<version>3.13.6</version> | ||
<version>3.13.10</version> | ||
</dependency> | ||
|
||
<!-- for workflow support --> | ||
|
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
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,4 @@ | ||
<?jelly escape-by-default='true'?> | ||
<div> | ||
Discord Notifier allows you to send Discord embeds about your builds via Discord's webhooks. | ||
</div> |