Skip to content

Commit c2136f7

Browse files
committed
artifactId must be lowercase -> jadapter-for-native-tts
1 parent 41dc048 commit c2136f7

2 files changed

Lines changed: 17 additions & 8 deletions

File tree

pom.xml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>io.github.jonelo</groupId>
8-
<artifactId>jAdapterForNativeTTS</artifactId>
9-
<version>0.9.9</version>
8+
<artifactId>jadapter-for-native-tts</artifactId>
9+
<version>0.10.0</version>
1010
<packaging>jar</packaging>
1111

1212
<properties>
@@ -73,7 +73,7 @@
7373
<artifactId>maven-javadoc-plugin</artifactId>
7474
<version>3.2.0</version>
7575
<configuration>
76-
<source>1.8</source>
76+
<source>11</source>
7777
</configuration>
7878
<executions>
7979
<execution>
@@ -84,6 +84,16 @@
8484
</execution>
8585
</executions>
8686
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-site-plugin</artifactId>
90+
<version>3.9.1</version>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-project-info-reports-plugin</artifactId>
95+
<version>3.1.2</version>
96+
</plugin>
8797
</plugins>
8898
</build>
8999

src/main/java/io/github/jonelo/jAdapterForNativeTTS/tui/Main.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@
2424

2525
package io.github.jonelo.jAdapterForNativeTTS.tui;
2626

27-
import io.github.jonelo.jAdapterForNativeTTS.engines.*;
28-
import io.github.jonelo.jAdapterForNativeTTS.engines.Voice;
29-
import io.github.jonelo.jAdapterForNativeTTS.engines.exceptions.NotSupportedOperatingSystemException;
30-
import io.github.jonelo.jAdapterForNativeTTS.engines.exceptions.ParseException;
3127
import io.github.jonelo.jAdapterForNativeTTS.engines.SpeechEngine;
3228
import io.github.jonelo.jAdapterForNativeTTS.engines.SpeechEngineNative;
29+
import io.github.jonelo.jAdapterForNativeTTS.engines.Voice;
3330
import io.github.jonelo.jAdapterForNativeTTS.engines.VoicePreferences;
31+
import io.github.jonelo.jAdapterForNativeTTS.engines.exceptions.NotSupportedOperatingSystemException;
32+
import io.github.jonelo.jAdapterForNativeTTS.engines.exceptions.ParseException;
3433

3534
import java.io.IOException;
3635
import java.util.List;
@@ -46,7 +45,7 @@ public class Main {
4645
* Prints the usage to the standard output.
4746
*/
4847
public static void usage() {
49-
System.out.println("java -jar jAdapterForNativeTTS-*.jar [word]...");
48+
System.out.println("java -jar jadapter-for-native-tts-*.jar [word]...");
5049
}
5150

5251

0 commit comments

Comments
 (0)