File tree 5 files changed +36
-3
lines changed
5 files changed +36
-3
lines changed Original file line number Diff line number Diff line change
1
+ -Duser.language=en -Duser.country=US
2
+
3
+
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ mvn release:perform
32
32
- Staging Repositories
33
33
- Close
34
34
- Release
35
- - ` しばらく ` 待つ
35
+ - ` しばらく ` 待つ。目安は 60分
36
36
37
37
# MEMO
38
38
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" >
3
5
<modelVersion >4.0.0</modelVersion >
4
6
<groupId >jp.igapyon.oiyokan</groupId >
5
7
<artifactId >oiyokan</artifactId >
157
159
<groupId >org.apache.maven.plugins</groupId >
158
160
<artifactId >maven-surefire-plugin</artifactId >
159
161
<version >3.0.0-M5</version >
162
+ <configuration >
163
+ <argLine >-Duser.language=en -Duser.region=US</argLine >
164
+ <systemPropertyVariables >
165
+ <user .language>en</user .language>
166
+ <user .region>US</user .region>
167
+ </systemPropertyVariables >
168
+ </configuration >
160
169
</plugin >
161
170
162
171
<!-- create sources.jar -->
174
183
<groupId >org.apache.maven.plugins</groupId >
175
184
<artifactId >maven-javadoc-plugin</artifactId >
176
185
<version >3.2.0</version >
186
+ <configuration >
187
+ <additionalJOptions >
188
+ <additionalJOption >-J-Duser.language=en</additionalJOption >
189
+ <additionalJOption >-J-Duser.region=US</additionalJOption >
190
+ </additionalJOptions >
191
+ <locale >en</locale >
192
+ <source >11</source >
193
+ <show >protected</show >
194
+ <encoding >UTF-8</encoding >
195
+ <charset >UTF-8</charset >
196
+ <docencoding >UTF-8</docencoding >
197
+ </configuration >
177
198
</plugin >
178
199
179
200
<!-- gpg -->
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public class OiyokanConstants {
27
27
/**
28
28
* Oiyokan のバージョン番号
29
29
*/
30
- public static final String VERSION = "1.11.20210503a " ;
30
+ public static final String VERSION = "1.11.20210503h " ;
31
31
32
32
/**
33
33
* 暗号化で利用するパスフレーズ。環境変数 OIYOKAN_PASSPHRASE で上書き動作。
Original file line number Diff line number Diff line change @@ -67,4 +67,13 @@ public String getPassphrase() {
67
67
68
68
return passphrase ;
69
69
}
70
+
71
+ /**
72
+ * パスフレーズを設定。
73
+ *
74
+ * @param passphrase パスフレーズ.
75
+ */
76
+ public void setPassphrase (String passphrase ) {
77
+ this .passphrase = passphrase ;
78
+ }
70
79
}
You can’t perform that action at this time.
0 commit comments