Skip to content

Commit 9ee78c8

Browse files
committed
Making RSTA and AutoComlete API dependencies since their types are used in public method signatures. Fix references to license file
1 parent b3a00fb commit 9ee78c8

File tree

11 files changed

+23
-18
lines changed

11 files changed

+23
-18
lines changed

RSTAUI/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
1+
plugins {
2+
id 'java-library'
3+
}
4+
15
['distribution', 'maven-publish', 'signing'].each { apply plugin: it }
26

37
assert JavaVersion.current().isJava8Compatible()
48

59
archivesBaseName = 'rstaui'
10+
11+
dependencies {
12+
api 'com.fifesoft:rsyntaxtextarea:3.0.8'
13+
api 'com.fifesoft:autocomplete:3.0.4'
14+
testImplementation 'junit:junit:4.12'
15+
}
16+
617
ext.isReleaseVersion = !project.version.endsWith('SNAPSHOT')
718

819
ext.sharedManifest = manifest {
@@ -89,7 +100,7 @@ publishing {
89100
licenses {
90101
license {
91102
name = 'BSD-3-Clause'
92-
url = 'http://fifesoft.com/rsyntaxtextarea/RSyntaxTextArea.License.txt'
103+
url = 'https://github.com/bobbylight/RSTAUI/blob/master/RSTAUI/src/main/dist/RSTAUI.License.txt'
93104
}
94105
}
95106
developers {

RSTAUI/src/main/java/org/fife/rsta/ui/CollapsibleSectionPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* CollapsibleSectionPanel - A panel that can show or hide its contents.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.License.txt file for details.
88
*/
99
package org.fife.rsta.ui;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/FindReplaceButtonsEnableResult.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* should be enabled.
66
*
77
* This library is distributed under a modified BSD license. See the included
8-
* RSyntaxTextArea.License.txt file for details.
8+
* RSTAUI.license.txt file for details.
99
*/
1010
package org.fife.rsta.ui.search;
1111

RSTAUI/src/main/java/org/fife/rsta/ui/search/FindToolBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* FindToolBar - A tool bar for "find" operations in text areas.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/ReplaceToolBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* ReplaceToolBar - A tool bar for "replace" operations in text areas.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/SearchComboBox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SearchComboBox - The combo box used for "find" and "replace" dropdowns.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/SearchEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SearchEvent - The event fired for find/replace/mark all operations.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/SearchListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SearchListener - Listens for events in find/replace dialogs and tool bars.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

RSTAUI/src/main/java/org/fife/rsta/ui/search/SearchUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SearchUtil - Utility methods for this package.
55
*
66
* This library is distributed under a modified BSD license. See the included
7-
* RSyntaxTextArea.License.txt file for details.
7+
* RSTAUI.license.txt file for details.
88
*/
99
package org.fife.rsta.ui.search;
1010

build.gradle

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ allprojects {
1616
}
1717

1818
wrapper {
19-
gradleVersion = '6.0.1'
19+
gradleVersion = '6.1'
2020
}
2121
}
2222

@@ -27,7 +27,7 @@ subprojects {
2727
apply plugin: 'com.github.spotbugs'
2828

2929
checkstyle {
30-
toolVersion = '8.27'
30+
toolVersion = '8.28'
3131
}
3232

3333
tasks.withType(com.github.spotbugs.SpotBugsTask) {
@@ -37,12 +37,6 @@ subprojects {
3737
}
3838
}
3939

40-
dependencies {
41-
implementation 'com.fifesoft:rsyntaxtextarea:3.0.8'
42-
implementation 'com.fifesoft:autocomplete:3.0.4'
43-
testImplementation 'junit:junit:4.12'
44-
}
45-
4640
compileJava {
4741
sourceCompatibility javaVersion
4842
targetCompatibility javaVersion

0 commit comments

Comments
 (0)