Skip to content

Commit

Permalink
v0.2.0: change artifactid to oldicelandic
Browse files Browse the repository at this point in the history
  • Loading branch information
stscoundrel committed Dec 6, 2022
1 parent 074f637 commit 86350b1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ As Maven dependency.
<dependency>
<groupId>io.github.stscoundrel</groupId>
<artifactId>old-icelandic-dictionary</artifactId>
<version>0.1.1</version> <!-- Note! Check latest release number -->
<version>0.2.0</version> <!-- Note! Check latest release number -->
</dependency>
```

Expand All @@ -26,8 +26,8 @@ The dictionary comes in two variants:

```java

import io.github.stscoundrel.oldicelandicdictionary.Dictionary;
import io.github.stscoundrel.oldicelandicdictionary.DictionaryEntry;
import io.github.stscoundrel.oldicelandic.Dictionary;
import io.github.stscoundrel.oldicelandic.DictionaryEntry;

Dictionary dictionary = new Dictionary();

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<modelVersion>4.0.0</modelVersion>

<groupId>io.github.stscoundrel</groupId>
<artifactId>oldicelandicdictionary</artifactId>
<version>0.1.1</version>
<artifactId>oldicelandic</artifactId>
<version>0.2.0</version>

<name>old-icelandic-dictionary</name>
<description>Old Icelandic dictionary. From "A Concise Dictionary of Old Icelandic" by Geir Zoëga.</description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.stscoundrel.oldicelandicdictionary;
package io.github.stscoundrel.oldicelandic;

import java.io.InputStream;
import java.io.InputStreamReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.stscoundrel.oldicelandicdictionary;
package io.github.stscoundrel.oldicelandic;

import com.google.gson.annotations.SerializedName;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.stscoundrel.oldicelandicdictionary;
package io.github.stscoundrel.oldicelandic;

import junit.framework.TestCase;

Expand Down

0 comments on commit 86350b1

Please sign in to comment.