Skip to content

Commit fe665f2

Browse files
authored
feat: Supports checkstyle to check all source codes (#18)
1. Add the rules to check source code 2. Import maven-checkstyle-plugin 3. Fix all unformatted source code see issue: #17
1 parent e9b387c commit fe665f2

Some content is hidden

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

41 files changed

+693
-63
lines changed

.github/workflows/build_and_test.yml

+1-10
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,6 @@ jobs:
4141
cd ${{ github.workspace }}/cloud-runtimes-jvm
4242
mvn clean
4343
mvn compile -q
44-
- name: "Pack rat file if failure"
45-
if: failure()
46-
run: 7z a ${{ github.workspace }}/rat.zip *rat.txt -r
47-
- name: "Upload rat file if failure"
48-
if: failure()
49-
uses: actions/upload-artifact@v2
50-
with:
51-
name: "rat-file"
52-
path: ${{ github.workspace }}/rat.zip
5344
- name: "Pack checkstyle file if failure"
5445
if: failure()
5546
run: 7z a ${{ github.workspace }}/checkstyle.zip *checkstyle* -r
@@ -62,7 +53,7 @@ jobs:
6253

6354
unit-test:
6455
needs: [ build-source ]
65-
name: "Unit Test On ${{ matrix.os }} (JDK: ${{ matrix.jdk }})"
56+
name: "Unit Test On ${{ matrix.os }} (OpenJDK: ${{ matrix.jdk }})"
6657
runs-on: ${{ matrix.os }}
6758
strategy:
6859
fail-fast: false

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/CoreCloudRuntimes.java

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes;
218

3-
import group.rxcloud.cloudruntimes.domain.core.*;
19+
import group.rxcloud.cloudruntimes.domain.core.InvocationRuntimes;
20+
import group.rxcloud.cloudruntimes.domain.core.PubSubRuntimes;
21+
import group.rxcloud.cloudruntimes.domain.core.BindingRuntimes;
22+
import group.rxcloud.cloudruntimes.domain.core.StateRuntimes;
23+
import group.rxcloud.cloudruntimes.domain.core.SecretsRuntimes;
24+
import group.rxcloud.cloudruntimes.domain.core.ConfigurationRuntimes;
425

526
/**
627
* Core Cloud Runtimes standard API defined.

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/EnhancedCloudRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes;
218

319
import group.rxcloud.cloudruntimes.domain.enhanced.MetricsRuntimes;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/client/CloudRuntimesClient.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.client;
218

319
import group.rxcloud.cloudruntimes.CoreCloudRuntimes;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/client/CloudRuntimesClientProvider.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.client;
218

319
/**

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/client/DefaultCloudRuntimesClient.java

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.client;
218

319
import group.rxcloud.cloudruntimes.domain.core.binding.InvokeBindingRequest;
@@ -10,7 +26,14 @@
1026
import group.rxcloud.cloudruntimes.domain.core.pubsub.PublishEventRequest;
1127
import group.rxcloud.cloudruntimes.domain.core.secrets.GetBulkSecretRequest;
1228
import group.rxcloud.cloudruntimes.domain.core.secrets.GetSecretRequest;
13-
import group.rxcloud.cloudruntimes.domain.core.state.*;
29+
import group.rxcloud.cloudruntimes.domain.core.state.State;
30+
import group.rxcloud.cloudruntimes.domain.core.state.DeleteStateRequest;
31+
import group.rxcloud.cloudruntimes.domain.core.state.StateOptions;
32+
import group.rxcloud.cloudruntimes.domain.core.state.GetBulkStateRequest;
33+
import group.rxcloud.cloudruntimes.domain.core.state.TransactionalStateOperation;
34+
import group.rxcloud.cloudruntimes.domain.core.state.ExecuteStateTransactionRequest;
35+
import group.rxcloud.cloudruntimes.domain.core.state.SaveStateRequest;
36+
import group.rxcloud.cloudruntimes.domain.core.state.GetStateRequest;
1437
import group.rxcloud.cloudruntimes.utils.TypeRef;
1538
import reactor.core.publisher.Flux;
1639
import reactor.core.publisher.Mono;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/BindingRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

319
import group.rxcloud.cloudruntimes.domain.core.binding.InvokeBindingRequest;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/ConfigurationRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

319
import group.rxcloud.cloudruntimes.domain.core.configuration.ConfigurationItem;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/InvocationRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

319
import group.rxcloud.cloudruntimes.domain.core.invocation.HttpExtension;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/PubSubRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

319
import group.rxcloud.cloudruntimes.domain.core.pubsub.PublishEventRequest;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/SecretsRuntimes.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

319
import group.rxcloud.cloudruntimes.domain.core.secrets.GetBulkSecretRequest;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/StateRuntimes.java

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core;
218

3-
import group.rxcloud.cloudruntimes.domain.core.state.*;
19+
import group.rxcloud.cloudruntimes.domain.core.state.State;
20+
import group.rxcloud.cloudruntimes.domain.core.state.GetStateRequest;
21+
import group.rxcloud.cloudruntimes.domain.core.state.SaveStateRequest;
22+
import group.rxcloud.cloudruntimes.domain.core.state.TransactionalStateOperation;
23+
import group.rxcloud.cloudruntimes.domain.core.state.StateOptions;
24+
import group.rxcloud.cloudruntimes.domain.core.state.GetBulkStateRequest;
25+
import group.rxcloud.cloudruntimes.domain.core.state.ExecuteStateTransactionRequest;
26+
import group.rxcloud.cloudruntimes.domain.core.state.DeleteStateRequest;
427
import group.rxcloud.cloudruntimes.utils.TypeRef;
528
import reactor.core.publisher.Mono;
629

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/binding/InvokeBindingRequest.java

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
/*
2-
* Copyright (c) CloudRuntimes Contributors.
3-
* Licensed under the MIT License.
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
416
*/
5-
617
package group.rxcloud.cloudruntimes.domain.core.binding;
718

819
import java.util.Collections;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/configuration/ConfigurationItem.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core.configuration;
218

319
import java.util.Map;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/configuration/ConfigurationRequestItem.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core.configuration;
218

319
import java.util.List;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/configuration/ConfigurationRequestItemBuilder.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core.configuration;
218

319
import java.util.List;

cloud-runtimes-api/src/main/java/group/rxcloud/cloudruntimes/domain/core/configuration/SaveConfigurationRequest.java

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one or more
3+
* contributor license agreements. See the NOTICE file distributed with
4+
* this work for additional information regarding copyright ownership.
5+
* The ASF licenses this file to You under the Apache License, Version 2.0
6+
* (the "License"); you may not use this file except in compliance with
7+
* the License. You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
117
package group.rxcloud.cloudruntimes.domain.core.configuration;
218

319
import java.util.List;

0 commit comments

Comments
 (0)