mdedetrich opened a new pull request, #474:
URL: https://github.com/apache/incubator-pekko/pull/474

   Currently if you create a new source file (typically the case if you add new 
functionality into Pekko) it applies this header
   
   ```scala
   /*
    * Licensed to the Apache Software Foundation (ASF) under one or more
    * license agreements; and to You under the Apache License, version 2.0:
    *
    *   https://www.apache.org/licenses/LICENSE-2.0
    *
    * This file is part of the Apache Pekko project, which was derived from 
Akka.
    */
    ```
    
    which is not the header that should be applied, instead you should rather 
be applying this header
    
    ```scala
    /*
    * Licensed to the Apache Software Foundation (ASF) under one or more
    * contributor license agreements. See the NOTICE file distributed with
    * this work for additional information regarding copyright ownership.
    * The ASF licenses this file to You 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.
    */
    ```
    
    Note that the functionality of adding our bespoke "Apache from Akka source" 
header if it detects a Lightbend/EPFL by itself still applies (you can verify 
this locally by opening an existing source file, removing the "Apache from Akka 
source" and then running `sbt headerCreateAll`)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to