Skip to content

Commit d674209

Browse files
committed
Bump Gradle version to 7.4.1 and move LICENSE to project root
1 parent aab7b64 commit d674209

File tree

17 files changed

+611
-633
lines changed

17 files changed

+611
-633
lines changed
Lines changed: 494 additions & 458 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ textArea.addParser(parser);
4040
See the `SpellCheckerDemo` submodule for a working example.
4141

4242
Just like Jazzy itself, this add-on is licensed under the LGPL; see the included
43-
[SpellChecker.License.txt](https://github.com/bobbylight/SpellChecker/blob/master/SpellChecker/src/main/dist/SpellChecker.License.txt) file.
43+
[LICENSE.md](https://github.com/bobbylight/SpellChecker/blob/master/SpellChecker/LICENSE.md) file.
4444

4545
## Sister Projects
4646

SpellChecker/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assert JavaVersion.current().isJava8Compatible()
99
archivesBaseName = 'spellchecker'
1010

1111
dependencies {
12-
api 'com.fifesoft:rsyntaxtextarea:3.1.7-SNAPSHOT'
12+
api 'com.fifesoft:rsyntaxtextarea:3.2.0'
1313
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
1414
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
1515
}
@@ -69,7 +69,7 @@ publishing {
6969

7070
name = 'SpellChecker'
7171
description = 'A simple spell checker add-on for RSyntaxTextArea. It will spell-check comments in source code, or the entire file if you are editing plain text. Spelling errors are squiggle-underlined with the color of your choice, and tooltips are available offering any spelling suggestions.'
72-
url = 'http://www.fifesoft.com/rsyntaxtextarea/'
72+
url = 'https://github.com/bobbylight/SpellChecker'
7373
inceptionYear = '2003'
7474
packaging = 'jar'
7575
licenses {
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
Jazzy Spell Checker could not have been possible without the involvment of the
2-
following people.
3-
4-
Thanks!
5-
6-
Author (Initial contributor)
7-
8-
Mindaugas Idzelis (min123 AT gmail DOT com)
9-
10-
Other contributors
11-
12-
Ben Galbraith (ben AT galbraiths DOT org)
13-
Damien Guillaume
14-
Robert Gustavsson (robert AT lindesign DOT se)
15-
Jason Height (jheight AT chariot DOT net DOT au)
16-
Anthony Roy (ajr AT antroy DOT co DOT uk)
17-
Stig Tanggaard
18-
Don Vail
19-
Matthew Demerath (mdemerat AT umich DOT edu | Matthew AT Demerath DOT com)
20-
Tony Chan (htchan AT umich DOT edu)
1+
Jazzy Spell Checker could not have been possible without the involvment of the
2+
following people.
3+
4+
Thanks!
5+
6+
Author (Initial contributor)
7+
8+
Mindaugas Idzelis (min123 AT gmail DOT com)
9+
10+
Other contributors
11+
12+
Ben Galbraith (ben AT galbraiths DOT org)
13+
Damien Guillaume
14+
Robert Gustavsson (robert AT lindesign DOT se)
15+
Jason Height (jheight AT chariot DOT net DOT au)
16+
Anthony Roy (ajr AT antroy DOT co DOT uk)
17+
Stig Tanggaard
18+
Don Vail
19+
Matthew Demerath (mdemerat AT umich DOT edu | Matthew AT Demerath DOT com)
20+
Tony Chan (htchan AT umich DOT edu)
Lines changed: 73 additions & 73 deletions
Original file line numberDiff line numberDiff line change
@@ -1,73 +1,73 @@
1-
2-
J A Z Z Y : Java Spell Checker
3-
4-
5-
What is it?
6-
-----------
7-
8-
Jazzy is a 100% pure Java library implementing a spell checking algorithm
9-
similar to aspell. It may be used to spell check a variety of sources.
10-
11-
The Latest Version
12-
------------------
13-
14-
The latest version is available from the Jazzy project web site
15-
( http://sourceforge.net/projects/jazzy ).
16-
17-
Requirements
18-
------------
19-
20-
The following requirements exist for installing Jazzy:
21-
22-
o Java Interpreter:
23-
24-
A fully compliant Java 1.1 Runtime environment is needed for the core engine of Jazzy
25-
to operate. (For example: for use in a servlet)
26-
27-
A fully compliant Java 1.3 Runtime environment is needed for the swing components of
28-
Jazzy to operate.
29-
30-
o Java JFC (Swing components):
31-
32-
These GUI extentions are required for proper GUI functionality. However, core
33-
spell check functionality can work without Swing Components.
34-
35-
Installation Instructions and Documentation
36-
-------------------------------------------
37-
38-
There are two ways to install Jazzy. One from a pre packaged version and the other is to
39-
compile the sources from CVS.
40-
41-
If you have downloaded the source code from CVS, please cd to the jazzy directory and run ant.
42-
43-
44-
Building Jazzy From the Source
45-
------------------------------
46-
1) In order to build the jedit plugin, you will need to have the jedit.jar in your classpath,
47-
otherwise you will get a lot of compile errors. All of the build errors relate to the files
48-
under
49-
src/com/swabunga/spell/jedit/*
50-
The easiest way to get jedit.jar onto your machine is to install jedit. You can find it at
51-
http://sourceforge.net/projects/jedit
52-
53-
2) In order to build the sample applet spell checker, you will need to sign the jar with "jazzykey".
54-
In order to sign the jar, you will need a key called "jazzykey".
55-
On some systems, you should be able to run the following command to get the key built:
56-
keytool -genkey -alias jazzyKey
57-
when prompted for the password, use the same one that's in build.xml (search for "sign")
58-
For more information on creating keys, see:
59-
http://java.sun.com/docs/books/tutorial/security1.2/toolsign/step3.html
60-
61-
62-
3) The ant target that builds most things is "binary-release", but you may want to build a smaller
63-
target.
64-
The current default target is "library-all", which may be sufficient if you just want the jar.
65-
66-
4) In order to see the applet demo, you will have to have a web server running. Point it to the
67-
www directory to see the index.html page and the applet demo.html page
68-
69-
Licensing and legal issues
70-
--------------------------
71-
72-
Jazzy is licensed under the LGPL. See LICENSE.txt for license restrictions.
73-
1+
2+
J A Z Z Y : Java Spell Checker
3+
4+
5+
What is it?
6+
-----------
7+
8+
Jazzy is a 100% pure Java library implementing a spell checking algorithm
9+
similar to aspell. It may be used to spell check a variety of sources.
10+
11+
The Latest Version
12+
------------------
13+
14+
The latest version is available from the Jazzy project web site
15+
( http://sourceforge.net/projects/jazzy ).
16+
17+
Requirements
18+
------------
19+
20+
The following requirements exist for installing Jazzy:
21+
22+
o Java Interpreter:
23+
24+
A fully compliant Java 1.1 Runtime environment is needed for the core engine of Jazzy
25+
to operate. (For example: for use in a servlet)
26+
27+
A fully compliant Java 1.3 Runtime environment is needed for the swing components of
28+
Jazzy to operate.
29+
30+
o Java JFC (Swing components):
31+
32+
These GUI extentions are required for proper GUI functionality. However, core
33+
spell check functionality can work without Swing Components.
34+
35+
Installation Instructions and Documentation
36+
-------------------------------------------
37+
38+
There are two ways to install Jazzy. One from a pre packaged version and the other is to
39+
compile the sources from CVS.
40+
41+
If you have downloaded the source code from CVS, please cd to the jazzy directory and run ant.
42+
43+
44+
Building Jazzy From the Source
45+
------------------------------
46+
1) In order to build the jedit plugin, you will need to have the jedit.jar in your classpath,
47+
otherwise you will get a lot of compile errors. All of the build errors relate to the files
48+
under
49+
src/com/swabunga/spell/jedit/*
50+
The easiest way to get jedit.jar onto your machine is to install jedit. You can find it at
51+
http://sourceforge.net/projects/jedit
52+
53+
2) In order to build the sample applet spell checker, you will need to sign the jar with "jazzykey".
54+
In order to sign the jar, you will need a key called "jazzykey".
55+
On some systems, you should be able to run the following command to get the key built:
56+
keytool -genkey -alias jazzyKey
57+
when prompted for the password, use the same one that's in build.xml (search for "sign")
58+
For more information on creating keys, see:
59+
http://java.sun.com/docs/books/tutorial/security1.2/toolsign/step3.html
60+
61+
62+
3) The ant target that builds most things is "binary-release", but you may want to build a smaller
63+
target.
64+
The current default target is "library-all", which may be sufficient if you just want the jar.
65+
66+
4) In order to see the applet demo, you will have to have a web server running. Point it to the
67+
www directory to see the index.html page and the applet demo.html page
68+
69+
Licensing and legal issues
70+
--------------------------
71+
72+
Jazzy is licensed under the LGPL. See LICENSE.txt for license restrictions.
73+

SpellChecker/src/main/dist/README.spellchecker.txt

Lines changed: 0 additions & 58 deletions
This file was deleted.

SpellChecker/src/main/java/org/fife/ui/rsyntaxtextarea/spell/DefaultSpellCheckableTokenIdentifier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* be spell checked.
66
*
77
* This library is distributed under the LGPL. See the included
8-
* SpellChecker.License.txt file for details.
8+
* LICENSE.md file for details.
99
*/
1010
package org.fife.ui.rsyntaxtextarea.spell;
1111

SpellChecker/src/main/java/org/fife/ui/rsyntaxtextarea/spell/SpellCheckableTokenIdentifier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SpellCheckableTokenIdentifier.java - Identifies tokens to spell check.
55
*
66
* This library is distributed under the LGPL. See the included
7-
* SpellChecker.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.rsyntaxtextarea.spell;
1010

@@ -45,4 +45,4 @@ public interface SpellCheckableTokenIdentifier {
4545
boolean isSpellCheckable(Token t);
4646

4747

48-
}
48+
}

SpellChecker/src/main/java/org/fife/ui/rsyntaxtextarea/spell/SpellingParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SpellingParser.java - A spell-checker for RSyntaxTextArea.
55
*
66
* This library is distributed under the LGPL. See the included
7-
* SpellChecker.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.rsyntaxtextarea.spell;
1010

SpellChecker/src/main/java/org/fife/ui/rsyntaxtextarea/spell/event/SpellingParserEvent.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* SpellingParserEvent.java - An event fired by the spelling parser.
55
*
66
* This library is distributed under the LGPL. See the included
7-
* SpellChecker.License.txt file for details.
7+
* LICENSE.md file for details.
88
*/
99
package org.fife.ui.rsyntaxtextarea.spell.event;
1010

@@ -110,4 +110,4 @@ private void setType(int type) {
110110
}
111111

112112

113-
}
113+
}

0 commit comments

Comments
 (0)