|
1 | 1 | <!-- |
2 | 2 |
|
3 | | - Copyright (C) 2012-2015 DataStax Inc. |
| 3 | + Copyright (C) 2012-2015 DataStax Inc. |
4 | 4 |
|
5 | | - Licensed under the Apache License, Version 2.0 (the "License"); |
6 | | - you may not use this file except in compliance with the License. |
7 | | - You may obtain a copy of the License at |
| 5 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | + you may not use this file except in compliance with the License. |
| 7 | + You may obtain a copy of the License at |
8 | 8 |
|
9 | | - http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + http://www.apache.org/licenses/LICENSE-2.0 |
10 | 10 |
|
11 | | - Unless required by applicable law or agreed to in writing, software |
12 | | - distributed under the License is distributed on an "AS IS" BASIS, |
13 | | - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
14 | | - See the License for the specific language governing permissions and |
15 | | - limitations under the License. |
| 11 | + Unless required by applicable law or agreed to in writing, software |
| 12 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | + See the License for the specific language governing permissions and |
| 15 | + limitations under the License. |
16 | 16 |
|
17 | 17 | --> |
18 | 18 | <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/maven-v4_0_0.xsd"> |
|
73 | 73 | <commons-exec.version>1.3</commons-exec.version> |
74 | 74 | <scassandra.version>1.1.2</scassandra.version> |
75 | 75 | <logback.version>1.2.3</logback.version> |
76 | | - <main.basedir>${project.basedir}</main.basedir> |
77 | 76 | <ipprefix>127.0.1.</ipprefix> |
78 | 77 | <test.groups>unit</test.groups> |
79 | 78 | <!-- Set default javadoc.opts, overriden by profiles --> |
|
382 | 381 | </dependency> |
383 | 382 | </dependencies> |
384 | 383 | </plugin> |
385 | | - <!-- |
386 | | - To update license headers run: |
387 | | - mvn license:format |
388 | | - --> |
389 | 384 | <plugin> |
390 | 385 | <groupId>com.mycila</groupId> |
391 | 386 | <artifactId>license-maven-plugin</artifactId> |
392 | | - <version>2.8</version> |
| 387 | + <version>3.0</version> |
393 | 388 | <configuration> |
394 | | - <header>${main.basedir}/src/license/header.txt</header> |
| 389 | + <inlineHeader><![CDATA[ |
| 390 | +
|
| 391 | +Copyright (C) 2012-2017 DataStax Inc. |
| 392 | +
|
| 393 | +Licensed under the Apache License, Version 2.0 (the "License"); |
| 394 | +you may not use this file except in compliance with the License. |
| 395 | +You may obtain a copy of the License at |
| 396 | +
|
| 397 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 398 | +
|
| 399 | +Unless required by applicable law or agreed to in writing, software |
| 400 | +distributed under the License is distributed on an "AS IS" BASIS, |
| 401 | +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 402 | +See the License for the specific language governing permissions and |
| 403 | +limitations under the License. |
| 404 | +
|
| 405 | +]]> |
| 406 | + </inlineHeader> |
395 | 407 | <includes> |
396 | 408 | <include>src/**/*.java</include> |
397 | 409 | <include>src/**/*.xml</include> |
398 | 410 | <include>src/**/*.properties</include> |
399 | 411 | <include>**/pom.xml</include> |
400 | 412 | </includes> |
401 | | - <excludes> |
402 | | - <exclude>**/src/main/config/ide/**</exclude> |
403 | | - </excludes> |
404 | 413 | <mapping> |
405 | 414 | <java>SLASHSTAR_STYLE</java> |
406 | 415 | <properties>SCRIPT_STYLE</properties> |
|
414 | 423 | <goals> |
415 | 424 | <goal>check</goal> |
416 | 425 | </goals> |
417 | | - <configuration> |
418 | | - <properties> |
419 | | - <currentYear>${currentYear}</currentYear> |
420 | | - </properties> |
421 | | - </configuration> |
422 | 426 | </execution> |
423 | 427 | </executions> |
424 | 428 | </plugin> |
|
0 commit comments