Skip to content

Commit c68f9bb

Browse files
authored
Merge pull request #3 from Watson-Personal-Assistant/esilky--handle-AGClient-startup-problems#377
Esilky handle ag client startup problems#377
2 parents cbf466c + ac06073 commit c68f9bb

33 files changed

+594
-233
lines changed

.classpath

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@
2828
<attribute name="maven.pomderived" value="true"/>
2929
</attributes>
3030
</classpathentry>
31+
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
3132
<classpathentry kind="output" path="target/classes"/>
3233
</classpath>

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.idea/*
2+
.settings/org.eclipse.jdt.ui.prefs
23
.DS_Store
34
target/*
45
target-display/*
@@ -14,3 +15,4 @@ build
1415
/target*/
1516
/target/
1617
/test/
18+
/*.jar

DEPENDENCIES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- OKIO (okio-1.13.0.jar). https://mvnrepository.com/artifact/com.squareup.okio/okio/1.13.0 License: Apache 2.0, Project: https://github.com/square/okhttp
66
- JSON (json-20160810.jar). https://mvnrepository.com/artifact/org.json/json/20160810 License: JSON, Project: https://github.com/stleary/JSON-java
77
- Pi4J (pi4j-core-1.2-SNAPSHOT.jar). https://oss.sonatype.org/index.html#nexus-search;gav~com.pi4j~pi4j-*~1.2-SNAPSHOT~~ License: LGPL, Project: http://pi4j.com/index.html
8+
- Apache Commons Lang 3 (commons-lang3-3.0.jar). https://mvnrepository.com/artifact/org.apache.commons/commons-lang3/3.0 License: License: Apache 2.0, Project: http://commons.apache.org/lang/
89

910

1011
- Portions Copyright (c) 1995, 2014, Oracle and/or its affiliates. All rights reserved.

config/log4j2.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<OnStartupTriggeringPolicy />
2121
<TimeBasedTriggeringPolicy />
2222
</Policies>
23-
<DefaultRooloverStrategy max="10" />
23+
<DefaultRolloverStrategy max="10" />
2424
</RollingFile>
2525
</Appenders>
2626

pom.xml

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525
<include>*.flac</include>
2626
</includes>
2727
</resource>
28+
<resource>
29+
<directory>src/main/java</directory>
30+
<excludes>
31+
<exclude>**/*.java</exclude>
32+
</excludes>
33+
</resource>
2834
</resources>
2935
<plugins>
3036
<!--
@@ -72,13 +78,11 @@
7278
<resources>
7379
<resource>
7480
<directory>speech/</directory>
75-
<directory>config</directory>
76-
<filtering>true</filtering>
77-
</resource>
78-
<resourse>
79-
<directory>config</directory>
8081
<filtering>false</filtering>
81-
</resourse>
82+
<includes>
83+
<include>*.flac</include>
84+
</includes>
85+
</resource>
8286
</resources>
8387
</configuration>
8488
</execution>
@@ -184,6 +188,11 @@
184188
<artifactId>jorbis</artifactId>
185189
<version>0.0.17.4</version>
186190
</dependency>
191+
<dependency>
192+
<groupId>org.apache.commons</groupId>
193+
<artifactId>commons-lang3</artifactId>
194+
<version>3.0</version>
195+
</dependency>
187196
<dependency>
188197
<groupId>org.apache.logging.log4j</groupId>
189198
<artifactId>log4j-api</artifactId>

speech/0.flac

0 Bytes
Binary file not shown.

speech/1.flac

0 Bytes
Binary file not shown.

speech/2.flac

0 Bytes
Binary file not shown.

speech/3.flac

0 Bytes
Binary file not shown.

speech/4.flac

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)