Skip to content

Commit a09f590

Browse files
committed
Update build plugins and dependencies; add developer info
1 parent ec89d0e commit a09f590

File tree

80 files changed

+99
-90
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+99
-90
lines changed

pom.xml

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020
<name>CodeLibs Project</name>
2121
<url>https://www.codelibs.org/</url>
2222
</organization>
23+
<developers>
24+
<developer>
25+
<id>shinsuke</id>
26+
<name>Shinsuke Sugaya</name>
27+
<email>[email protected]</email>
28+
<organization>CodeLibs Inc.</organization>
29+
<organizationUrl>https://codelibs.co</organizationUrl>
30+
</developer>
31+
</developers>
2332
<scm>
2433
<connection>scm:git:[email protected]:codelibs/fesen-httpclient.git</connection>
2534
<url>scm:git:[email protected]:codelibs/fesen-httpclient.git</url>
@@ -36,7 +45,7 @@
3645
<plugins>
3746
<plugin>
3847
<artifactId>maven-compiler-plugin</artifactId>
39-
<version>3.13.0</version>
48+
<version>3.14.0</version>
4049
<configuration>
4150
<release>17</release>
4251
<encoding>UTF-8</encoding>
@@ -57,7 +66,7 @@
5766
</plugin>
5867
<plugin>
5968
<artifactId>maven-javadoc-plugin</artifactId>
60-
<version>3.7.0</version>
69+
<version>3.11.2</version>
6170
<configuration>
6271
<encoding>UTF-8</encoding>
6372
<docencoding>UTF-8</docencoding>
@@ -67,15 +76,15 @@
6776
<plugin>
6877
<groupId>org.apache.maven.plugins</groupId>
6978
<artifactId>maven-surefire-plugin</artifactId>
70-
<version>3.3.0</version>
79+
<version>3.5.3</version>
7180
<configuration>
7281
<useSystemClassLoader>false</useSystemClassLoader>
7382
</configuration>
7483
</plugin>
7584
<plugin>
7685
<groupId>org.jacoco</groupId>
7786
<artifactId>jacoco-maven-plugin</artifactId>
78-
<version>0.8.12</version>
87+
<version>0.8.13</version>
7988
<executions>
8089
<execution>
8190
<goals>
@@ -94,11 +103,11 @@
94103
<plugin>
95104
<groupId>com.mycila</groupId>
96105
<artifactId>license-maven-plugin</artifactId>
97-
<version>4.5</version>
106+
<version>5.0.0</version>
98107
<configuration>
99108
<header>https://www.codelibs.org/assets/license/header.txt</header>
100109
<properties>
101-
<year>2023</year>
110+
<year>2025</year>
102111
</properties>
103112
<includes>
104113
<include>src/**/*.java</include>
@@ -112,7 +121,7 @@
112121
<plugin>
113122
<groupId>net.revelc.code.formatter</groupId>
114123
<artifactId>formatter-maven-plugin</artifactId>
115-
<version>2.24.1</version>
124+
<version>2.26.0</version>
116125
<executions>
117126
<execution>
118127
<goals>
@@ -151,10 +160,10 @@
151160
</build>
152161
<repositories>
153162
<repository>
154-
<id>central</id>
155-
<url>https://repo1.maven.org/maven2</url>
163+
<id>snapshots.central.sonatype.com</id>
164+
<url>https://central.sonatype.com/repository/maven-snapshots</url>
156165
<releases>
157-
<enabled>true</enabled>
166+
<enabled>false</enabled>
158167
</releases>
159168
<snapshots>
160169
<enabled>true</enabled>
@@ -192,7 +201,7 @@
192201
<dependency>
193202
<groupId>org.junit.platform</groupId>
194203
<artifactId>junit-platform-launcher</artifactId>
195-
<version>1.10.2</version>
204+
<version>1.11.3</version>
196205
<scope>test</scope>
197206
</dependency>
198207
<dependency>

src/main/java/org/codelibs/fesen/client/EngineInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/HttpAbstractClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/HttpAdminClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/HttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/HttpIndicesAdminClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpAnalyzeAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpBulkAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpCancelTasksAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpClearIndicesCacheAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpClearScrollAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpCloseIndexAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpClusterHealthAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpClusterRerouteAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpClusterUpdateSettingsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpCreateIndexAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpCreateSnapshotAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteIndexAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteIndexTemplateAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeletePipelineAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteRepositoryAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteSnapshotAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpDeleteStoredScriptAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpExplainAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpFieldCapabilitiesAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpFlushAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpForceMergeAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetAliasesAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetFieldMappingsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetIndexAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetIndexTemplatesAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetMappingsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetPipelineAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetRepositoriesAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetSettingsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetSnapshotsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpGetStoredScriptAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpIndexAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpIndicesAliasesAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpIndicesExistsAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

src/main/java/org/codelibs/fesen/client/action/HttpListTasksAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2023 CodeLibs Project and the Others.
2+
* Copyright 2012-2025 CodeLibs Project and the Others.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)