Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ keeps adding duplicate Copyright Template Headers to Java Source files

IntelliJ adds too many copy right headers

I setup IntelliJ to include a licence into source code as a comment into the header. For some reason IntelliJ repeated the copy right statement for several in all files.

So currently all files have between one and five (or more) repetitions of the licence header, e.g.:

/*
 * Copyright [2014] [John Doe]
 *
 *    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.
 */

/*
 * Copyright [2014] [John Doe]
 *
 *    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.
 */

How can I remove multiple repetitions of the same header?

I could not find a fuction to remove the headers again. Does IntelliJ provide such a functionality? Should I use Linux board tools and replace tne string? How can I do this safely?

like image 476
Stefan Avatar asked May 20 '26 06:05

Stefan


1 Answers

According to Creating Copyright Profiles - IntelliJ IDEA 13.1.0 Web Help (the bold font is mine):

In the Keyword to detect copyright in comments text box, type a character string to distinguish copyright notices from other comments during copyright update.

I.e. it needs to be a single substring unique enough to reliably identify your copyright notice specified in the copyright profile.

like image 148
ivan_pozdeev Avatar answered May 22 '26 01:05

ivan_pozdeev



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!