|
24 | 24 | <jsapi2.groupId>com.github.umjammer.jsapi2</jsapi2.groupId> <!-- org.jvoicexml / com.github.umjammer.jsapi2 -->
|
25 | 25 | <jsapi2.version>0.6.10</jsapi2.version>
|
26 | 26 |
|
27 |
| - <jersey.version>3.1.5</jersey.version> |
| 27 | + <jersey.version>3.1.7</jersey.version> |
28 | 28 | </properties>
|
29 | 29 |
|
30 | 30 | <profiles>
|
31 | 31 | <profile>
|
32 |
| - <id>local (not on CI)</id> |
| 32 | + <id>local</id> |
33 | 33 | <activation>
|
34 | 34 | <file>
|
35 | 35 | <exists>${basedir}/local.properties</exists>
|
36 | 36 | </file>
|
37 |
| - <property> |
38 |
| - <name>env.JITPACK</name> |
39 |
| - <value>!true</value> |
40 |
| - </property> |
41 | 37 | </activation>
|
42 | 38 | <build>
|
43 | 39 | <plugins>
|
44 | 40 | <plugin>
|
45 | 41 | <groupId>org.codehaus.mojo</groupId>
|
46 | 42 | <artifactId>properties-maven-plugin</artifactId>
|
47 |
| - <version>1.1.0</version> |
| 43 | + <version>1.2.1</version> |
48 | 44 | <executions>
|
49 | 45 | <execution>
|
50 | 46 | <id>read-properties</id>
|
|
64 | 60 | <!-- don't touch: this works well on github actions -->
|
65 | 61 | <groupId>org.apache.maven.plugins</groupId>
|
66 | 62 | <artifactId>maven-surefire-plugin</artifactId>
|
67 |
| - <version>3.2.2</version> |
| 63 | + <version>3.2.5</version> |
68 | 64 | <configuration>
|
69 | 65 | <reuseForks>false</reuseForks>
|
70 | 66 | <trimStackTrace>false</trimStackTrace>
|
71 |
| - <systemProperties> |
72 |
| - <sen.home>${sen.home}</sen.home> |
73 |
| - <vavi.speech.voicevox.url>${voicevox.url}</vavi.speech.voicevox.url> |
74 |
| - <htsvoice.dir>${htsvoice.dir}</htsvoice.dir> |
75 |
| - </systemProperties> |
76 | 67 | <environmentVariables>
|
77 | 68 | <GOOGLE_APPLICATION_CREDENTIALS>${google.credential}</GOOGLE_APPLICATION_CREDENTIALS>
|
78 | 69 | <DOCOMO_GOO_HIRAGANA_API_KEY>${docomo.goo.hiragana.apiKey}</DOCOMO_GOO_HIRAGANA_API_KEY>
|
79 | 70 | <YAHOOJAPAN_API_KEY>${yahoo.japan.apiKey}</YAHOOJAPAN_API_KEY>
|
80 | 71 | </environmentVariables>
|
81 | 72 | <argLine>
|
82 | 73 | -Djava.util.logging.config.file=${project.build.testOutputDirectory}/logging.properties
|
83 |
| - -Dvavi.util.logging.VaviFormatter.extraClassMethod=sun\\.util\\.logging\\.internal\\.LoggingProviderImpl.*r#log |
| 74 | + -Dvavi.util.logging.VaviFormatter.extraClassMethod=sun\.util\.logging\.internal\.LoggingProviderImpl.*r#log |
| 75 | + -Dsen.home=@{sen.home} |
| 76 | + -Dvavi.speech.voicevox.url=@{voicevox.url} |
| 77 | + -Dhtsvoice.dir=@{htsvoice.dir} |
84 | 78 | </argLine>
|
85 | 79 | <includes>
|
86 | 80 | <include>**/*Test_*.java</include>
|
|
164 | 158 | <plugin>
|
165 | 159 | <groupId>org.apache.maven.plugins</groupId>
|
166 | 160 | <artifactId>maven-compiler-plugin</artifactId>
|
167 |
| - <version>3.11.0</version> |
| 161 | + <version>3.12.1</version> |
168 | 162 | <configuration>
|
169 |
| - <release>17</release> |
| 163 | + <release>21</release> |
170 | 164 | </configuration>
|
171 | 165 | </plugin>
|
172 | 166 | </plugins>
|
|
177 | 171 | <id>jitpack.io</id>
|
178 | 172 | <url>https://jitpack.io</url>
|
179 | 173 | </repository>
|
180 |
| - <repository> |
181 |
| - <id>maven_central</id> |
182 |
| - <name>Maven Central</name> |
183 |
| - <url>https://repo.maven.apache.org/maven2/</url> |
184 |
| - </repository> |
185 | 174 | </repositories>
|
186 | 175 |
|
187 | 176 | <dependencyManagement>
|
188 | 177 | <dependencies>
|
189 | 178 | <dependency>
|
190 | 179 | <groupId>com.google.cloud</groupId>
|
191 | 180 | <artifactId>libraries-bom</artifactId>
|
192 |
| - <version>26.13.0</version> |
| 181 | + <version>26.43.0</version> |
193 | 182 | <type>pom</type>
|
194 | 183 | <scope>import</scope>
|
195 | 184 | </dependency>
|
196 | 185 |
|
197 | 186 | <dependency>
|
198 | 187 | <groupId>org.junit</groupId>
|
199 | 188 | <artifactId>junit-bom</artifactId>
|
200 |
| - <version>5.10.2</version> |
| 189 | + <version>5.10.3</version> |
201 | 190 | <type>pom</type>
|
202 | 191 | <scope>import</scope>
|
203 | 192 | </dependency>
|
|
223 | 212 | <version>0.8.13</version>
|
224 | 213 | </dependency>
|
225 | 214 |
|
| 215 | + <dependency> |
| 216 | + <groupId>com.google.cloud</groupId> |
| 217 | + <artifactId>google-cloud-speech</artifactId> |
| 218 | + </dependency> |
| 219 | + |
226 | 220 | <dependency>
|
227 | 221 | <groupId>com.github.umjammer</groupId> <!-- vavi / com.github.umjammer -->
|
228 | 222 | <artifactId>vavi-speech</artifactId>
|
229 |
| - <version>0.1.12</version> |
| 223 | + <version>0.1.13</version> |
230 | 224 | <exclusions>
|
| 225 | + <exclusion> |
| 226 | + <groupId>com.google.protobuf</groupId> |
| 227 | + <artifactId>protobuf-java</artifactId> |
| 228 | + </exclusion> |
231 | 229 | <exclusion>
|
232 | 230 | <groupId>com.github.umjammer</groupId>
|
233 | 231 | <artifactId>javax-speech</artifactId>
|
|
236 | 234 | <groupId>com.github.umjammer.FreeTTS</groupId>
|
237 | 235 | <artifactId>freetts-jsapi10</artifactId>
|
238 | 236 | </exclusion>
|
239 |
| - <exclusion> |
240 |
| - <artifactId>guava</artifactId> |
241 |
| - <groupId>com.google.guava</groupId> |
242 |
| - </exclusion> |
243 | 237 | </exclusions>
|
244 | 238 | </dependency>
|
245 | 239 | <dependency>
|
246 |
| - <artifactId>guava</artifactId> |
247 |
| - <groupId>com.google.guava</groupId> |
248 |
| - <version>33.1.0-jre</version> |
| 240 | + <groupId>com.google.protobuf</groupId> |
| 241 | + <artifactId>protobuf-java</artifactId> |
| 242 | + <version>3.25.5</version> |
249 | 243 | </dependency>
|
250 | 244 |
|
251 |
| - <dependency> |
252 |
| - <groupId>com.google.cloud</groupId> |
253 |
| - <artifactId>google-cloud-speech</artifactId> |
254 |
| - <exclusions> |
255 |
| - <exclusion> |
256 |
| - <artifactId>guava</artifactId> |
257 |
| - <groupId>com.google.guava</groupId> |
258 |
| - </exclusion> |
259 |
| - </exclusions> |
260 |
| - </dependency> |
261 |
| - |
262 | 245 | <dependency>
|
263 | 246 | <groupId>org.glassfish.jersey.core</groupId>
|
264 | 247 | <artifactId>jersey-client</artifactId>
|
|
300 | 283 | <dependency>
|
301 | 284 | <groupId>org.slf4j</groupId>
|
302 | 285 | <artifactId>slf4j-jdk14</artifactId>
|
303 |
| - <version>2.0.13</version> |
| 286 | + <version>2.0.16</version> |
304 | 287 | <scope>test</scope>
|
305 | 288 | </dependency>
|
306 | 289 | </dependencies>
|
|
0 commit comments