Skip to content

Commit 1feb16f

Browse files
Remove license in file (#2505)
Remove license in file
1 parent 537d99d commit 1feb16f

File tree

1,236 files changed

+9
-24602
lines changed

Some content is hidden

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

1,236 files changed

+9
-24602
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
env:
3232
USER: unittest
3333
USE_DOCKER_SERVICE: false
34-
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
34+
run: ./gradlew --no-daemon test -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
3535

3636
- name: Run independent resource tuner test
3737
env:
3838
USER: unittest
3939
USE_DOCKER_SERVICE: false
40-
run: ./gradlew --no-daemon temporal-sdk:testResourceIndependent -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
40+
run: ./gradlew --no-daemon temporal-sdk:testResourceIndependent -x spotlessCheck -x spotlessApply -x spotlessJava -P edgeDepsTest
4141

4242
- name: Publish Test Report
4343
uses: mikepenz/action-junit-report@v5
@@ -111,14 +111,14 @@ jobs:
111111
USER: unittest
112112
TEMPORAL_SERVICE_ADDRESS: localhost:7233
113113
USE_DOCKER_SERVICE: true
114-
run: ./gradlew --no-daemon test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava
114+
run: ./gradlew --no-daemon test -x spotlessCheck -x spotlessApply -x spotlessJava
115115

116116
- name: Run virtual thread tests
117117
env:
118118
USER: unittest
119119
TEMPORAL_SERVICE_ADDRESS: localhost:7233
120120
USE_DOCKER_SERVICE: true
121-
run: ./gradlew --no-daemon :temporal-sdk:virtualThreadTests -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -x spotlessJava
121+
run: ./gradlew --no-daemon :temporal-sdk:virtualThreadTests -x spotlessCheck -x spotlessApply -x spotlessJava
122122

123123
- name: Publish Test Report
124124
uses: mikepenz/action-junit-report@v5
@@ -165,8 +165,8 @@ jobs:
165165
with:
166166
report_paths: '**/build/test-results/test/TEST-*.xml'
167167

168-
copyright:
169-
name: Copyright and code format
168+
code_format:
169+
name: Code format
170170
runs-on: ubuntu-latest
171171
timeout-minutes: 20
172172
steps:
@@ -187,4 +187,4 @@ jobs:
187187
uses: gradle/actions/setup-gradle@v4
188188

189189
- name: Run copyright and code format checks
190-
run: ./gradlew --no-daemon checkLicenseMain checkLicenses spotlessCheck
190+
run: ./gradlew --no-daemon spotlessCheck

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: gradle/actions/setup-gradle@v4
2424

2525
- name: Run Tests
26-
run: ./gradlew test -x checkLicenseMain -x checkLicenses -x spotlessCheck -x spotlessApply -Pjacoco
26+
run: ./gradlew test -x spotlessCheck -x spotlessApply -Pjacoco
2727
continue-on-error: true
2828

2929
- name: Run Test Coverage

LICENSE.header

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ does not apply
8181

8282
## License
8383

84-
Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
84+
Copyright (C) 2025 Temporal Technologies, Inc. All Rights Reserved.
8585

8686
Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
8787

build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ buildscript {
66

77
plugins {
88
id 'net.ltgt.errorprone' version '4.1.0' apply false
9-
id 'org.cadixdev.licenser' version '0.6.1'
109
id 'com.palantir.git-version' version "${palantirGitVersionVersion}" apply false
1110
id 'io.github.gradle-nexus.publish-plugin' version '1.3.0'
1211
id 'com.diffplug.spotless' version '7.0.2' apply false
@@ -72,7 +71,6 @@ if (JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11)) {
7271
apply from: "$rootDir/gradle/linting.gradle"
7372
}
7473
apply from: "$rootDir/gradle/errorprone.gradle"
75-
apply from: "$rootDir/gradle/licensing.gradle"
7674
apply from: "$rootDir/gradle/publishing.gradle"
7775
apply from: "$rootDir/gradle/dependencyManagement.gradle"
7876
apply from: "$rootDir/gradle/gatherDependencies.gradle"

gradle/licensing.gradle

Lines changed: 0 additions & 12 deletions
This file was deleted.

temporal-kotlin/src/main/kotlin/io/temporal/activity/ActivityExecutionContextExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.activity
223

temporal-kotlin/src/main/kotlin/io/temporal/activity/ActivityOptionsExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.activity
223

temporal-kotlin/src/main/kotlin/io/temporal/activity/LocalActivityOptionsExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.activity
223

temporal-kotlin/src/main/kotlin/io/temporal/client/WorkflowClientExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.client
223

temporal-kotlin/src/main/kotlin/io/temporal/client/WorkflowClientOptionsExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.client
223

temporal-kotlin/src/main/kotlin/io/temporal/client/WorkflowOptionsExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.client
223

temporal-kotlin/src/main/kotlin/io/temporal/client/WorkflowStubExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.client
223

temporal-kotlin/src/main/kotlin/io/temporal/common/RetryOptionsExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.common
223

temporal-kotlin/src/main/kotlin/io/temporal/common/converter/DataConverterExt.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.common.converter
223

temporal-kotlin/src/main/kotlin/io/temporal/common/converter/KotlinObjectMapperFactory.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.common.converter
223

temporal-kotlin/src/main/kotlin/io/temporal/common/metadata/ActivityMetadata.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.common.metadata
223

temporal-kotlin/src/main/kotlin/io/temporal/common/metadata/WorkflowMetadata.kt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,3 @@
1-
/*
2-
* Copyright (C) 2022 Temporal Technologies, Inc. All Rights Reserved.
3-
*
4-
* Copyright (C) 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5-
*
6-
* Modifications copyright (C) 2017 Uber Technologies, Inc.
7-
*
8-
* Licensed under the Apache License, Version 2.0 (the "License");
9-
* you may not use this material except in compliance with the License.
10-
* You may obtain a copy of the License at
11-
*
12-
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software
15-
* distributed under the License is distributed on an "AS IS" BASIS,
16-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17-
* See the License for the specific language governing permissions and
18-
* limitations under the License.
19-
*/
201

212
package io.temporal.common.metadata
223

0 commit comments

Comments
 (0)