Skip to content

Commit

Permalink
feat (379): exclude license headers in test files
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Aug 7, 2024
1 parent 50f070c commit 04a28ca
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
#if (!${licenseTechnicalPreview} || ${licenseTechnicalPreview} == 'false')<license.organizationName>TODO: Enter Organization name</license.organizationName>#end

<license.includes>**/*.js,**/*.ts</license.includes>
<license.excludes></license.excludes>
<license.excludes>test/resources/**/*.js</license.excludes>
</properties>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
#if (!${licenseTechnicalPreview} || ${licenseTechnicalPreview} == 'false')<license.organizationName>TODO: Enter Organization name</license.organizationName>#end

<license.includes>**/*.js</license.includes>
<license.excludes>**/*Tests.js</license.excludes>
<license.excludes>test/resources/**/*.js</license.excludes>
</properties>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
#if (!${licenseTechnicalPreview} || ${licenseTechnicalPreview} == 'false')<license.organizationName>TODO: Enter Organization name</license.organizationName>#end

<license.includes>**/*.js,**/*.ts</license.includes>
<license.excludes>**/*.test.ts,**/*Test.js</license.excludes>
<license.excludes>**/*.test.ts,test/resources/**/*.js</license.excludes>
</properties>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
#if (!${licenseTechnicalPreview} || ${licenseTechnicalPreview} == 'false')<license.organizationName>TODO: Enter Organization name</license.organizationName>#end

<license.includes>**/*.js,**/*.ts</license.includes>
<license.excludes>**/*.test.ts,**/*Test.js</license.excludes>
<license.excludes>**/*.test.ts,test/resources/**/*.js</license.excludes>
</properties>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
#if (!${licenseTechnicalPreview} || ${licenseTechnicalPreview} == 'false')<license.organizationName>TODO: Enter Organization name</license.organizationName>#end

<license.includes>**/*.js,**/*.ts</license.includes>
<license.excludes></license.excludes>
<license.excludes>**/*.test.ts,test/resources/**/*.js</license.excludes>
</properties>
</project>

0 comments on commit 04a28ca

Please sign in to comment.