Skip to content

Commit 26a59ab

Browse files
authored
Merge pull request #19 from SWAT-engineering/fixing-license-plugin
Fixing the license plugin configuration
2 parents 68b039d + 2f3b3d6 commit 26a59ab

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,17 @@
8585
</headerDefinitions>
8686
<licenseSets>
8787
<licenseSet>
88-
<header>LICENSE</header>
88+
<header>LICENSE.md</header>
8989
<excludes>
9090
<exclude>rascal_style.xml</exclude>
91-
<exclude>**/README</exclude>
91+
<exclude>**/README.md</exclude>
9292
<exclude>src/test/resources/**</exclude>
9393
<exclude>src/main/resources/**</exclude>
9494
<exclude>**/*.tpl</exclude>
9595
<exclude>META-INF/**</exclude>
9696
<exclude>.editorconfig</exclude>
97-
<exclude>CITATION</exclude>
98-
<exclude>FUNDING</exclude>
97+
<exclude>CITATION.md</exclude>
98+
<exclude>FUNDING.md</exclude>
9999
<exclude>**/*.txt</exclude>
100100
</excludes>
101101
</licenseSet>

src/main/rascal/lang/php/util/Config.rsc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
@license{
2+
Copyright (c) 2013, NWO-I Centrum Wiskunde & Informatica (CWI), Mark Hills, Apalachean State University
3+
All rights reserved.
4+
5+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6+
7+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8+
9+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
10+
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12+
}
113
module lang::php::util::Config
214

315
@doc{Indicates whether to use the parser contained in a distributed jar file or from the directory given below}

0 commit comments

Comments
 (0)