Skip to content

Commit 85c79ac

Browse files
authored
chore: add licenses and add license validation (#67)
1 parent a6781d4 commit 85c79ac

14 files changed

+114
-1
lines changed

.license/header.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+
SPDX-License-Identifier: Apache-2.0

.license/style.xml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="ISO-8859-1"?>
2+
<!--
3+
4+
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
5+
SPDX-License-Identifier: Apache-2.0
6+
7+
-->
8+
<additionalHeaders>
9+
<java_style>
10+
<firstLine>/*</firstLine>
11+
<beforeEachLine> * </beforeEachLine>
12+
<endLine> */EOL</endLine>
13+
<firstLineDetectionPattern>(\\s|\\t)*/\\*.*$</firstLineDetectionPattern>
14+
<lastLineDetectionPattern>.*\\*/(\\s|\\t)*$</lastLineDetectionPattern>
15+
<allowBlankLines>false</allowBlankLines>
16+
<isMultiline>true</isMultiline>
17+
<padLines>false</padLines>
18+
</java_style>
19+
<batch>
20+
<firstLine>@REM -------------------------------</firstLine>
21+
<beforeEachLine>@REM </beforeEachLine>
22+
<endLine>@REM -------------------------------</endLine>
23+
<firstLineDetectionPattern>@REM(\\s|\\t)*.*$</firstLineDetectionPattern>
24+
<lastLineDetectionPattern>@REM(\\s|\\t)*.*$</lastLineDetectionPattern>
25+
<allowBlankLines>false</allowBlankLines>
26+
<isMultiline>true</isMultiline>
27+
<padLines>false</padLines>
28+
</batch>
29+
</additionalHeaders>

pom.xml

+33
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,39 @@
194194
</execution>
195195
</executions>
196196
</plugin>
197+
<plugin>
198+
<groupId>com.mycila</groupId>
199+
<artifactId>license-maven-plugin</artifactId>
200+
<version>4.0.rc2</version>
201+
<configuration>
202+
<licenseSets>
203+
<licenseSet>
204+
<header>.license/header.txt</header>
205+
<headerDefinitions>
206+
<headerDefinition>.license/style.xml</headerDefinition>
207+
</headerDefinitions>
208+
<useDefaultExcludes>true</useDefaultExcludes>
209+
<excludes>
210+
<exclude>*</exclude>
211+
<exclude>codestyle/**</exclude>
212+
<exclude>src/*/resources/**</exclude>
213+
</excludes>
214+
</licenseSet>
215+
</licenseSets>
216+
<mapping>
217+
<java>JAVA_STYLE</java>
218+
<cmd>BATCH</cmd>
219+
</mapping>
220+
</configuration>
221+
<executions>
222+
<execution>
223+
<phase>validate</phase>
224+
<goals>
225+
<goal>check</goal>
226+
</goals>
227+
</execution>
228+
</executions>
229+
</plugin>
197230
<plugin>
198231
<groupId>com.github.spotbugs</groupId>
199232
<artifactId>spotbugs-maven-plugin</artifactId>

src/main/java/com/aws/greengrass/device/configuration/parser/ASTAnd.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. ASTAnd.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/configuration/parser/ASTOr.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. ASTOr.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/configuration/parser/ASTStart.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. ASTStart.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/configuration/parser/ASTThing.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. ASTThing.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/configuration/parser/JJTRuleExpressionState.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JavaCC: Do not edit this line. JJTRuleExpressionState.java Version 7.0.10 */
27
package com.aws.greengrass.device.configuration.parser;
38

src/main/java/com/aws/greengrass/device/configuration/parser/Node.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. Node.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/configuration/parser/RuleExpressionDefaultVisitor.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JavaCC: Do not edit this line. RuleExpressionDefaultVisitor.java Version 7.0.10 */
27
package com.aws.greengrass.device.configuration.parser;
38

src/main/java/com/aws/greengrass/device/configuration/parser/RuleExpressionTreeConstants.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JavaCC: Do not edit this line. RuleExpressionTreeConstants.java Version 7.0.10 */
27
package com.aws.greengrass.device.configuration.parser;
38

src/main/java/com/aws/greengrass/device/configuration/parser/RuleExpressionVisitor.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JavaCC: Do not edit this line. RuleExpressionVisitor.java Version 7.0.10 */
27
package com.aws.greengrass.device.configuration.parser;
38

src/main/java/com/aws/greengrass/device/configuration/parser/SimpleNode.java

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*
2+
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
16
/* Generated By:JJTree: Do not edit this line. SimpleNode.java Version 7.0 */
27
/* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=false,NODE_PREFIX=AST,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */
38
package com.aws.greengrass.device.configuration.parser;

src/main/java/com/aws/greengrass/device/iot/IotAuthClient.java

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/*
22
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
33
* SPDX-License-Identifier: Apache-2.0
4-
*
54
*/
65

76
package com.aws.greengrass.device.iot;

0 commit comments

Comments
 (0)