|
| 1 | +<!-- |
| 2 | +
|
| 3 | + Copyright (c) 2018-2025, NWO-I CWI and Swat.engineering |
| 4 | + All rights reserved. |
| 5 | +
|
| 6 | + Redistribution and use in source and binary forms, with or without |
| 7 | + modification, are permitted provided that the following conditions are met: |
| 8 | +
|
| 9 | + 1. Redistributions of source code must retain the above copyright notice, |
| 10 | + this list of conditions and the following disclaimer. |
| 11 | +
|
| 12 | + 2. Redistributions in binary form must reproduce the above copyright notice, |
| 13 | + this list of conditions and the following disclaimer in the documentation |
| 14 | + and/or other materials provided with the distribution. |
| 15 | +
|
| 16 | + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 17 | + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 18 | + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 19 | + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 20 | + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 21 | + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 22 | + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 23 | + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 24 | + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 25 | + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 26 | + POSSIBILITY OF SUCH DAMAGE. |
| 27 | +
|
| 28 | +--> |
1 | 29 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2 | 30 | <modelVersion>4.0.0</modelVersion>
|
3 | 31 |
|
|
206 | 234 | </execution>
|
207 | 235 | </executions>
|
208 | 236 | </plugin>
|
| 237 | + <plugin> |
| 238 | + <groupId>com.mycila</groupId> |
| 239 | + <artifactId>license-maven-plugin</artifactId> |
| 240 | + <!-- check and possible add license header |
| 241 | + run mvn license:format to automatically update all license headers |
| 242 | + and add missing ones --> |
| 243 | + <version>4.6</version> |
| 244 | + <configuration> |
| 245 | + <headerDefinitions> |
| 246 | + <headerDefinition>rascal_style.xml</headerDefinition> |
| 247 | + </headerDefinitions> |
| 248 | + <licenseSets> |
| 249 | + <licenseSet> |
| 250 | + <header>LICENSE.txt</header> |
| 251 | + <excludes> |
| 252 | + <exclude>rascal_style.xml</exclude> |
| 253 | + <exclude>checkstyle.xml</exclude> |
| 254 | + <exclude>**/README</exclude> |
| 255 | + <exclude>src/test/resources/**</exclude> |
| 256 | + <exclude>src/main/resources/**</exclude> |
| 257 | + <exclude>**/*.tpl</exclude> |
| 258 | + <exclude>META-INF/**</exclude> |
| 259 | + <exclude>.editorconfig</exclude> |
| 260 | + <exclude>CITATION</exclude> |
| 261 | + <exclude>FUNDING</exclude> |
| 262 | + </excludes> |
| 263 | + </licenseSet> |
| 264 | + </licenseSets> |
| 265 | + <mapping> |
| 266 | + <java>SLASHSTAR_STYLE</java> |
| 267 | + <rsc>RASCAL_STYLE</rsc> |
| 268 | + </mapping> |
| 269 | + </configuration> |
| 270 | + <executions> |
| 271 | + <execution> |
| 272 | + <goals> |
| 273 | + <goal>check</goal> |
| 274 | + </goals> |
| 275 | + </execution> |
| 276 | + </executions> |
| 277 | + </plugin> |
209 | 278 | </plugins>
|
210 | 279 | </build>
|
211 | 280 |
|
|
0 commit comments