Skip to content

Commit cbd88eb

Browse files
committed
Revert "chore: add license headers (#190)"
This reverts commit 3bcb849.
1 parent 3bcb849 commit cbd88eb

File tree

228 files changed

+22
-3389
lines changed

Some content is hidden

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

228 files changed

+22
-3389
lines changed

.github/licenses/add-headers.sh

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

.github/licenses/check-headers.sh

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

.github/licenses/default.txt

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

.github/workflows/build.yml

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -18,23 +18,6 @@ on:
1818
default: 'stable'
1919

2020
jobs:
21-
# Check license headers on all source files
22-
check-license-header:
23-
name: Check License Headers
24-
runs-on: ubuntu-latest
25-
timeout-minutes: 5
26-
steps:
27-
- name: Checkout repository
28-
uses: actions/checkout@v4
29-
30-
- name: Download addlicense
31-
run: |
32-
curl -sL https://github.com/google/addlicense/releases/download/v1.2.0/addlicense_v1.2.0_Linux_x86_64.tar.gz | tar xz -C /usr/local/bin addlicense
33-
chmod +x /usr/local/bin/addlicense
34-
35-
- name: Check license headers
36-
run: .github/licenses/check-headers.sh
37-
3821
lint:
3922
name: Lint (Dart ${{ matrix.dart-version }})
4023
runs-on: ubuntu-latest
@@ -366,7 +349,7 @@ jobs:
366349
build:
367350
name: Build verification (Dart ${{ matrix.dart-version }})
368351
runs-on: ubuntu-latest
369-
needs: [lint, test, test-integration, check-license-header]
352+
needs: [lint, test, test-integration]
370353
# Run even if test-integration was skipped (fork PRs), but not if lint or test failed
371354
if: |
372355
always() &&
@@ -407,12 +390,5 @@ jobs:
407390
run: melos bootstrap
408391
working-directory: .
409392

410-
- name: Validate license headers
411-
run: |
412-
if [ "${{ needs.check-license-header.result }}" != "success" ]; then
413-
echo "❌ License header check failed"
414-
exit 1
415-
fi
416-
417393
- name: Verify package
418394
run: dart pub publish --dry-run

CONTRIBUTING.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2026 Google LLC
189+
Copyright 2020 Invertase Limited
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

gen-version.sh

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,4 @@
11
#!/bin/bash
2-
# Copyright 2026 Google LLC
3-
#
4-
# Licensed under the Apache License, Version 2.0 (the "License");
5-
# you may not use this file except in compliance with the License.
6-
# You may obtain a copy of the License at
7-
#
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
#
10-
# Unless required by applicable law or agreed to in writing, software
11-
# distributed under the License is distributed on an "AS IS" BASIS,
12-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
# See the License for the specific language governing permissions and
14-
# limitations under the License.
15-
162

173
# Script to generate version.g.dart files for all packages
184
# Finds all packages/*/pubspec.yaml files, extracts version, and writes to package/lib/version.g.dart

0 commit comments

Comments
 (0)