Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[rdf4j-dev] Missing copyright headers
  • From: Jerven Tjalling Bolleman <Jerven.Bolleman@sib.swiss>
  • Date: Mon, 4 Jul 2022 18:45:43 +0000
  • Accept-language: en-GB, en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=sib.swiss; dmarc=pass action=none header.from=sib.swiss; dkim=pass header.d=sib.swiss; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=DkO0cE4yOl8/TifPL4lO6CkDR6XQYaYxDeurLIGRxoo=; b=L7jE0660CS2CE/Pl/ui8jzN93/VE7rGwcfBWBrt1EgCESTdj6T6QNvNxxByG5B9pmc2bcF2q5gYLquOcDfFoI14gggp9NSrafLL0f+gdlQaOEB113DwXnC1EKME7Nr+ctWE6AW+61i4GLDUS2h4M25ozz3VJlPWalVSPSHxJIS993Yee1LAIKHmOuDc26W0O0ll6JegLWbyUk2w0gX94Vu7t47q3qVaAvZ4OUFGF+1dKpSK+joJ5wn/D+WtTX60e7c/Bdxc6MGA1hBZzv40332ZXidjdLICJmI0DPDgGp1Jqcwy9KdgPcxm8SnADtofFri7kjheNkHQCNUnSxmfROA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Hg27haHkYCSv8O5zgWFuliLjZj642hvBz7aALOcjOvPUvhVDaZGKVF9vHGSXxsogL0Td0BJa5042uq6cV5xp1GOCE/VOWNzmVEP8d1bHov0dUY83qMs6/ORUY+I3oeDXeqmAz2E5+ETwGDdl2oZHjD8Qkbt4KVSXpN6I1nHh6741SQ65eu3lIRqBtRmKcgmXLIDNHCjcA/tlhMTEwqlVK0cU7x9EAh1OJfHcWTQ9qqiS+dpDITy2sTYdYi7+D0gUVsoszdrOBg/4aAdn+qLyaIoMU6HKPZ4EweFdK2dyk9iKeCs0vwB0pRAt88md9pGTbqGV1jLXwEaTOUr4cyzxpg==
  • Delivered-to: rdf4j-dev@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/rdf4j-dev/>
  • List-help: <mailto:rdf4j-dev-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/rdf4j-dev>, <mailto:rdf4j-dev-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/rdf4j-dev>, <mailto:rdf4j-dev-request@eclipse.org?subject=unsubscribe>
  • Suggested_attachment_session_id: c53b6ba1-f2a8-bb24-3467-e3d282259ca0
  • Thread-index: AQHYj9X7CmfcDUiCPkywQuHwLlitXQ==
  • Thread-topic: Missing copyright headers

Dear All,

I noticed that I missed a copyright header in one of my commits and thought it would be good to have github action to check for that.

I have a small bash thing that finds such files in src/main

for i in $(find . -name pom.xml);
  do if [ -d ${i:0:-7}/src/main ];
  then
    find ${i:0:-7}/src/main -name *.java -not -name package-info.java -exec grep -L Copyright {} \; ;
  fi;
done

Would it be worth to fix all these and then indeed have this as a github action?

Regards,
Jerven

Back to the top