From 5c2363e8736f513d3b6c30859114a390f867fbca Mon Sep 17 00:00:00 2001 From: svc-excavator-bot Date: Tue, 18 Feb 2020 10:13:01 +0000 Subject: [PATCH] Excavator: Upgrades Baseline to the latest version --- .baseline/checkstyle/checkstyle.xml | 4 ---- build.gradle | 2 +- .../python/FlatteningPackageNameProcessor.java | 12 ++++++++++++ .../conjure/python/GeneratorConfiguration.java | 12 ++++++++++++ .../python/TopLevelAddingPackageNameProcessor.java | 12 ++++++++++++ .../palantir/conjure/python/poet/AliasSnippet.java | 12 ++++++++++++ .../com/palantir/conjure/python/poet/AllSnippet.java | 12 ++++++++++++ .../com/palantir/conjure/python/poet/PythonLine.java | 12 ++++++++++++ .../palantir/conjure/python/poet/PythonMetaYaml.java | 12 ++++++++++++ .../palantir/conjure/python/poet/PythonSetup.java | 12 ++++++++++++ .../palantir/conjure/python/poet/PythonSnippet.java | 12 ++++++++++++ .../conjure/python/PackageNameProcessorTests.java | 12 ++++++++++++ .../conjure/python/cli/BuildConfiguration.java | 12 ++++++++++++ 13 files changed, 133 insertions(+), 5 deletions(-) diff --git a/.baseline/checkstyle/checkstyle.xml b/.baseline/checkstyle/checkstyle.xml index 476882c26..40af80ae7 100644 --- a/.baseline/checkstyle/checkstyle.xml +++ b/.baseline/checkstyle/checkstyle.xml @@ -18,10 +18,6 @@ - - - - diff --git a/build.gradle b/build.gradle index 5fb3e2fb2..2786f5e2c 100644 --- a/build.gradle +++ b/build.gradle @@ -30,7 +30,7 @@ buildscript { classpath 'com.netflix.nebula:gradle-info-plugin:7.1.1' classpath 'com.netflix.nebula:nebula-publishing-plugin:17.0.5' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4' - classpath 'com.palantir.baseline:gradle-baseline-java:3.3.0' + classpath 'com.palantir.baseline:gradle-baseline-java:3.4.2' classpath 'com.palantir.gradle.conjure:gradle-conjure:4.18.0' classpath 'com.palantir.gradle.gitversion:gradle-git-version:0.12.2' classpath 'gradle.plugin.org.inferred:gradle-processors:3.3.0' diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/FlatteningPackageNameProcessor.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/FlatteningPackageNameProcessor.java index 7979ca15d..b85113a93 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/FlatteningPackageNameProcessor.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/FlatteningPackageNameProcessor.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/GeneratorConfiguration.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/GeneratorConfiguration.java index 5756f1727..a6ee31169 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/GeneratorConfiguration.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/GeneratorConfiguration.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/TopLevelAddingPackageNameProcessor.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/TopLevelAddingPackageNameProcessor.java index a245989fe..2187dc6e8 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/TopLevelAddingPackageNameProcessor.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/TopLevelAddingPackageNameProcessor.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AliasSnippet.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AliasSnippet.java index c6ad1da9f..f0e2487b9 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AliasSnippet.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AliasSnippet.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AllSnippet.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AllSnippet.java index f49ece531..4f8178a78 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AllSnippet.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/AllSnippet.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonLine.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonLine.java index 39163407f..fe0a271a9 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonLine.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonLine.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonMetaYaml.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonMetaYaml.java index 98a35619d..b172b44e0 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonMetaYaml.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonMetaYaml.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSetup.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSetup.java index 1d909ffd5..dda1b36c2 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSetup.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSetup.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSnippet.java b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSnippet.java index a42f1d9a5..ce033b764 100644 --- a/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSnippet.java +++ b/conjure-python-core/src/main/java/com/palantir/conjure/python/poet/PythonSnippet.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.poet; diff --git a/conjure-python-core/src/test/java/com/palantir/conjure/python/PackageNameProcessorTests.java b/conjure-python-core/src/test/java/com/palantir/conjure/python/PackageNameProcessorTests.java index 407c3affb..9f1f62bdb 100644 --- a/conjure-python-core/src/test/java/com/palantir/conjure/python/PackageNameProcessorTests.java +++ b/conjure-python-core/src/test/java/com/palantir/conjure/python/PackageNameProcessorTests.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python; diff --git a/conjure-python/src/main/java/com/palantir/conjure/python/cli/BuildConfiguration.java b/conjure-python/src/main/java/com/palantir/conjure/python/cli/BuildConfiguration.java index 2a4759f44..27644eff1 100644 --- a/conjure-python/src/main/java/com/palantir/conjure/python/cli/BuildConfiguration.java +++ b/conjure-python/src/main/java/com/palantir/conjure/python/cli/BuildConfiguration.java @@ -1,5 +1,17 @@ /* * (c) Copyright 2018 Palantir Technologies Inc. All rights reserved. + * + * 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. */ package com.palantir.conjure.python.cli;