Skip to content

Commit 89b1848

Browse files
Update JGroups
1 parent 3114605 commit 89b1848

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ repositories {
5959
dependencies {
6060
compile group: 'club.minnced', name: 'Java-DiscordRPC', version: 'v1.3.3'
6161

62-
compile group: 'org.jgroups', name: 'jgroups', version: '4.0.9.Final'
62+
compile group: 'org.jgroups', name: 'jgroups', version: '4.0.10.Final'
6363
}
6464

6565
processResources {
@@ -73,7 +73,7 @@ processResources {
7373
}
7474
}
7575

76-
ext.readInfoFile = { String name ->
76+
project.ext.readInfoFile = { String name ->
7777
// @formatter:off
7878
return file(name).text
7979
// Remove unnecessary whitespace
@@ -89,7 +89,7 @@ ext.readInfoFile = { String name ->
8989
// Replace inner lists
9090
.replaceAll("\n - (.*)", { matcher -> "<li>${matcher[1]}</li>" })
9191
.replaceAll("((?:<li>.*</li>)+)", { matcher -> "<ul>${matcher[1]}</ul>" })
92-
//
92+
9393
// Replace lists
9494
.replaceAll("\n- (.*)", { matcher -> "<li>${matcher[1]}</li>" })
9595
.replaceAll("((?:<li>.*</li>)+)", { matcher -> "<ul>${matcher[1]}</ul>" })
@@ -103,7 +103,7 @@ ext.readInfoFile = { String name ->
103103
// @formatter:on
104104
}
105105

106-
ext.showHtml = { String html ->
106+
project.ext.showHtml = { String html ->
107107
JFrame frame = new JFrame("Changelog")
108108
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE)
109109
frame.getContentPane().add(new JLabel('<html>' + html))

0 commit comments

Comments
 (0)