From 101427c1417158352b6925a42ee29f098b79f10f Mon Sep 17 00:00:00 2001 From: evanweible-wf Date: Fri, 14 Aug 2015 09:25:28 -0500 Subject: [PATCH] #17 Add Apache 2.0 license. --- LICENSE | 13 +++++++++++++ NOTICE | 14 ++++++++++++++ bin/dart_dev.dart | 14 ++++++++++++++ lib/api.dart | 14 ++++++++++++++ lib/dart_dev.dart | 14 ++++++++++++++ lib/src/dart_dev_cli.dart | 14 ++++++++++++++ lib/src/reporter.dart | 14 ++++++++++++++ lib/src/task_process.dart | 14 ++++++++++++++ lib/src/tasks/analyze/api.dart | 14 ++++++++++++++ lib/src/tasks/analyze/cli.dart | 14 ++++++++++++++ lib/src/tasks/analyze/config.dart | 14 ++++++++++++++ lib/src/tasks/cli.dart | 14 ++++++++++++++ lib/src/tasks/config.dart | 14 ++++++++++++++ lib/src/tasks/copy_license/api.dart | 14 ++++++++++++++ lib/src/tasks/copy_license/cli.dart | 14 ++++++++++++++ lib/src/tasks/copy_license/config.dart | 14 ++++++++++++++ lib/src/tasks/examples/api.dart | 14 ++++++++++++++ lib/src/tasks/examples/cli.dart | 14 ++++++++++++++ lib/src/tasks/examples/config.dart | 14 ++++++++++++++ lib/src/tasks/format/api.dart | 14 ++++++++++++++ lib/src/tasks/format/cli.dart | 14 ++++++++++++++ lib/src/tasks/format/config.dart | 14 ++++++++++++++ lib/src/tasks/init/api.dart | 14 ++++++++++++++ lib/src/tasks/init/cli.dart | 14 ++++++++++++++ lib/src/tasks/init/config.dart | 14 ++++++++++++++ lib/src/tasks/task.dart | 14 ++++++++++++++ lib/src/tasks/test/api.dart | 14 ++++++++++++++ lib/src/tasks/test/cli.dart | 14 ++++++++++++++ lib/src/tasks/test/config.dart | 14 ++++++++++++++ lib/src/util.dart | 14 ++++++++++++++ lib/src/version.dart | 14 ++++++++++++++ lib/util.dart | 14 ++++++++++++++ test/integration/analyze_test.dart | 14 ++++++++++++++ test/integration/copy_license_test.dart | 14 ++++++++++++++ test/integration/examples_test.dart | 14 ++++++++++++++ test/integration/format_test.dart | 14 ++++++++++++++ test/integration/init_test.dart | 14 ++++++++++++++ test/integration/test_test.dart | 14 ++++++++++++++ tool/dev.dart | 20 ++++++++++++++++++-- 39 files changed, 549 insertions(+), 2 deletions(-) create mode 100644 LICENSE create mode 100644 NOTICE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..9493cb68 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ +Copyright 2015 Workiva Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000..906aca67 --- /dev/null +++ b/NOTICE @@ -0,0 +1,14 @@ +dart_dev +Copyright 2015 Workiva Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. \ No newline at end of file diff --git a/bin/dart_dev.dart b/bin/dart_dev.dart index b90ba2ba..f6ec12ce 100644 --- a/bin/dart_dev.dart +++ b/bin/dart_dev.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.bin.dart_dev; import 'dart:io'; diff --git a/lib/api.dart b/lib/api.dart index b0effcc4..3b66541c 100644 --- a/lib/api.dart +++ b/lib/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.api; export 'package:dart_dev/src/tasks/analyze/api.dart' show AnalyzeTask, analyze; diff --git a/lib/dart_dev.dart b/lib/dart_dev.dart index 0135562d..da58f76e 100644 --- a/lib/dart_dev.dart +++ b/lib/dart_dev.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev; export 'package:dart_dev/src/dart_dev_cli.dart' show registerTask, dev; diff --git a/lib/src/dart_dev_cli.dart b/lib/src/dart_dev_cli.dart index 49575ad3..db7a2efc 100644 --- a/lib/src/dart_dev_cli.dart +++ b/lib/src/dart_dev_cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.cli; import 'dart:async'; diff --git a/lib/src/reporter.dart b/lib/src/reporter.dart index 9fca2159..72309afb 100644 --- a/lib/src/reporter.dart +++ b/lib/src/reporter.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.reporter; import 'dart:async'; diff --git a/lib/src/task_process.dart b/lib/src/task_process.dart index cc2d7068..6e83befc 100644 --- a/lib/src/task_process.dart +++ b/lib/src/task_process.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.task_process; import 'dart:async'; diff --git a/lib/src/tasks/analyze/api.dart b/lib/src/tasks/analyze/api.dart index 11f7ba3e..11ce9ace 100644 --- a/lib/src/tasks/analyze/api.dart +++ b/lib/src/tasks/analyze/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.analyze.api; import 'dart:async'; diff --git a/lib/src/tasks/analyze/cli.dart b/lib/src/tasks/analyze/cli.dart index d535d1a7..6e0e9960 100644 --- a/lib/src/tasks/analyze/cli.dart +++ b/lib/src/tasks/analyze/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.analyze.cli; import 'dart:async'; diff --git a/lib/src/tasks/analyze/config.dart b/lib/src/tasks/analyze/config.dart index 0d022100..e732aa14 100644 --- a/lib/src/tasks/analyze/config.dart +++ b/lib/src/tasks/analyze/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.analyze.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/tasks/cli.dart b/lib/src/tasks/cli.dart index d4173fa8..2c6570b7 100644 --- a/lib/src/tasks/cli.dart +++ b/lib/src/tasks/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.cli; import 'dart:async'; diff --git a/lib/src/tasks/config.dart b/lib/src/tasks/config.dart index 75daf1c9..976e215f 100644 --- a/lib/src/tasks/config.dart +++ b/lib/src/tasks/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.config; import 'package:dart_dev/src/tasks/analyze/config.dart'; diff --git a/lib/src/tasks/copy_license/api.dart b/lib/src/tasks/copy_license/api.dart index 851df9f9..3b24093e 100644 --- a/lib/src/tasks/copy_license/api.dart +++ b/lib/src/tasks/copy_license/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.copy_license.api; import 'dart:async'; diff --git a/lib/src/tasks/copy_license/cli.dart b/lib/src/tasks/copy_license/cli.dart index 8e91c528..1c6d0db1 100644 --- a/lib/src/tasks/copy_license/cli.dart +++ b/lib/src/tasks/copy_license/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.copy_license.cli; import 'dart:async'; diff --git a/lib/src/tasks/copy_license/config.dart b/lib/src/tasks/copy_license/config.dart index a0e20090..5e778ae3 100644 --- a/lib/src/tasks/copy_license/config.dart +++ b/lib/src/tasks/copy_license/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.copy_license.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/tasks/examples/api.dart b/lib/src/tasks/examples/api.dart index e2d4269d..db0d63da 100644 --- a/lib/src/tasks/examples/api.dart +++ b/lib/src/tasks/examples/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.examples.api; import 'dart:async'; diff --git a/lib/src/tasks/examples/cli.dart b/lib/src/tasks/examples/cli.dart index c21b7916..bd2cb434 100644 --- a/lib/src/tasks/examples/cli.dart +++ b/lib/src/tasks/examples/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.examples.cli; import 'dart:async'; diff --git a/lib/src/tasks/examples/config.dart b/lib/src/tasks/examples/config.dart index 9a3a6546..db7ae74c 100644 --- a/lib/src/tasks/examples/config.dart +++ b/lib/src/tasks/examples/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.examples.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/tasks/format/api.dart b/lib/src/tasks/format/api.dart index b5965f0b..0d29f1e0 100644 --- a/lib/src/tasks/format/api.dart +++ b/lib/src/tasks/format/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.format.api; import 'dart:async'; diff --git a/lib/src/tasks/format/cli.dart b/lib/src/tasks/format/cli.dart index fc694d69..fea01833 100644 --- a/lib/src/tasks/format/cli.dart +++ b/lib/src/tasks/format/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.format.cli; import 'dart:async'; diff --git a/lib/src/tasks/format/config.dart b/lib/src/tasks/format/config.dart index 5eb970f0..d18e6795 100644 --- a/lib/src/tasks/format/config.dart +++ b/lib/src/tasks/format/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.format.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/tasks/init/api.dart b/lib/src/tasks/init/api.dart index 337f5d9e..3bd9b4e5 100644 --- a/lib/src/tasks/init/api.dart +++ b/lib/src/tasks/init/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.init.api; import 'dart:async'; diff --git a/lib/src/tasks/init/cli.dart b/lib/src/tasks/init/cli.dart index 1b1bb2a2..da296cff 100644 --- a/lib/src/tasks/init/cli.dart +++ b/lib/src/tasks/init/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.init.cli; import 'dart:async'; diff --git a/lib/src/tasks/init/config.dart b/lib/src/tasks/init/config.dart index ad265ba7..af1d5b05 100644 --- a/lib/src/tasks/init/config.dart +++ b/lib/src/tasks/init/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.init.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/tasks/task.dart b/lib/src/tasks/task.dart index b6e80a92..7b39a40c 100644 --- a/lib/src/tasks/task.dart +++ b/lib/src/tasks/task.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.task; import 'dart:async'; diff --git a/lib/src/tasks/test/api.dart b/lib/src/tasks/test/api.dart index 1e6ae54c..94fc51da 100644 --- a/lib/src/tasks/test/api.dart +++ b/lib/src/tasks/test/api.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.test.api; import 'dart:async'; diff --git a/lib/src/tasks/test/cli.dart b/lib/src/tasks/test/cli.dart index 9e657618..9a3a2b39 100644 --- a/lib/src/tasks/test/cli.dart +++ b/lib/src/tasks/test/cli.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.test.cli; import 'dart:async'; diff --git a/lib/src/tasks/test/config.dart b/lib/src/tasks/test/config.dart index 5daac265..9e159eb9 100644 --- a/lib/src/tasks/test/config.dart +++ b/lib/src/tasks/test/config.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.tasks.test.config; import 'package:dart_dev/src/tasks/config.dart'; diff --git a/lib/src/util.dart b/lib/src/util.dart index 5012fa47..3d2e6bfc 100644 --- a/lib/src/util.dart +++ b/lib/src/util.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.util; import 'dart:io'; diff --git a/lib/src/version.dart b/lib/src/version.dart index 11519b9c..960bc8d3 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.src.version; import 'dart:io'; diff --git a/lib/util.dart b/lib/util.dart index ec970609..6953269c 100644 --- a/lib/util.dart +++ b/lib/util.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.util; export 'package:dart_dev/src/reporter.dart' show Reporter, reporter; diff --git a/test/integration/analyze_test.dart b/test/integration/analyze_test.dart index 2e77ba6d..f50fc98e 100644 --- a/test/integration/analyze_test.dart +++ b/test/integration/analyze_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + @TestOn('vm') library dart_dev.test.integration.analyze_test; diff --git a/test/integration/copy_license_test.dart b/test/integration/copy_license_test.dart index 950e1442..d3203bfd 100644 --- a/test/integration/copy_license_test.dart +++ b/test/integration/copy_license_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.test.integration.copy_license_test; import 'dart:async'; diff --git a/test/integration/examples_test.dart b/test/integration/examples_test.dart index c6392ae3..7df6c3f9 100644 --- a/test/integration/examples_test.dart +++ b/test/integration/examples_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + @TestOn('vm') library dart_dev.test.integration.examples_test; diff --git a/test/integration/format_test.dart b/test/integration/format_test.dart index e2a66d8f..167c931b 100644 --- a/test/integration/format_test.dart +++ b/test/integration/format_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + @TestOn('vm') library dart_dev.test.integration.format_test; diff --git a/test/integration/init_test.dart b/test/integration/init_test.dart index 1f209788..19b9450b 100644 --- a/test/integration/init_test.dart +++ b/test/integration/init_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + @TestOn('vm') library dart_dev.test.integration.init_test; diff --git a/test/integration/test_test.dart b/test/integration/test_test.dart index ab9f2214..c88a1f2b 100644 --- a/test/integration/test_test.dart +++ b/test/integration/test_test.dart @@ -1,3 +1,17 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + @TestOn('vm') library dart_dev.test.integration.test_test; diff --git a/tool/dev.dart b/tool/dev.dart index f3516535..ba4e0e43 100644 --- a/tool/dev.dart +++ b/tool/dev.dart @@ -1,10 +1,26 @@ +// Copyright 2015 Workiva Inc. +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + library dart_dev.dev; import 'package:dart_dev/dart_dev.dart'; main(args) async { - config.analyze.entryPoints = ['bin/', 'lib/', 'test/integration/', 'tool/']; - config.format.directories = ['bin/', 'lib/', 'test/integration/', 'tool/']; + var directories = ['bin/', 'lib/', 'test/integration/', 'tool/']; + config.analyze.entryPoints = directories; + config.copyLicense.directories = directories; + config.format.directories = directories; config.test ..unitTests = [] ..integrationTests = ['test/integration/'];