Skip to content

Commit 0471012

Browse files
committed
bump versions
1 parent c7f9f64 commit 0471012

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
<extension>
44
<groupId>io.takari.polyglot</groupId>
55
<artifactId>polyglot-ruby</artifactId>
6-
<version>0.1.19</version>
6+
<version>0.2.0</version>
77
</extension>
88
</extensions>

pom.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@
3030
} )
3131
end
3232

33-
jar 'org.processing:core:3.3.4'
33+
jar 'org.processing:core:3.3.5'
3434
jar 'org.jsoup:jsoup:1.10.3'
3535

3636
build do
3737
default_goal 'package'
38-
source_directory 'source.directory'
38+
source_directory '${source.directory}'
3939
final_name 'WordCram'
4040
resource do
4141
directory 'src'

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>wordcram</groupId>
1313
<artifactId>WordCram</artifactId>
14-
<version>2.0.0</version>
14+
<version>2.0.1</version>
1515
<name>Wordcram</name>
1616
<description>WordCram for JRubyArt and propane</description>
1717
<organization>
@@ -53,7 +53,7 @@ DO NOT MODIFIY - GENERATED CODE
5353
<dependency>
5454
<groupId>org.processing</groupId>
5555
<artifactId>core</artifactId>
56-
<version>3.3.4</version>
56+
<version>3.3.5</version>
5757
</dependency>
5858
<dependency>
5959
<groupId>org.jsoup</groupId>
@@ -62,7 +62,7 @@ DO NOT MODIFIY - GENERATED CODE
6262
</dependency>
6363
</dependencies>
6464
<build>
65-
<sourceDirectory>source.directory</sourceDirectory>
65+
<sourceDirectory>${source.directory}</sourceDirectory>
6666
<defaultGoal>package</defaultGoal>
6767
<resources>
6868
<resource>

src/wordcram/Word.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ public Word setProperty(String propertyName, Object propertyValue) {
290290
/**
291291
* Displays the word, and its weight (in parentheses).
292292
* <code>new Word("hello", 1.3).toString()</code> will return "hello (0.3)".
293+
* @return
293294
*/
294295
@Override
295296
public String toString() {
@@ -309,6 +310,7 @@ else if (wasSkipped()) {
309310
/**
310311
* Compares Words based on weight only. Words with equal weight are arbitrarily sorted.
311312
* @param w
313+
* @return
312314
*/
313315
@Override
314316
public int compareTo(Word w) {

0 commit comments

Comments
 (0)