Skip to content

Commit

Permalink
Rename LICENSE_HEADER to LICENSE.header and update all references
Browse files Browse the repository at this point in the history
  • Loading branch information
tdonohue committed Dec 20, 2021
1 parent 7ff8592 commit d5caa24
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion dspace/src/main/assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<include>README</include>
</includes>
<excludes>
<exclude>LICENSE_HEADER</exclude>
<exclude>LICENSE.header</exclude>
</excludes>
</fileSet>
<!-- If local.cfg is in the root folder, copy it to config folder -->
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<skipIntegrationTests>true</skipIntegrationTests>

<!-- 'root.basedir' is the path to the root [dspace-src] dir. It must be redefined by each child POM,
as it is used to reference the LICENSE_HEADER and *.properties file(s) in that directory. -->
as it is used to reference the LICENSE.header and *.properties file(s) in that directory. -->
<root.basedir>${basedir}</root.basedir>
</properties>

Expand Down Expand Up @@ -400,13 +400,13 @@
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<!-- Check license headers in all files using LICENSE_HEADER template -->
<!-- Check license headers in all files using LICENSE.header template -->
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<!-- License header file (can be a URL, but that's less stable if external site is down on occasion) -->
<header>${root.basedir}/LICENSE_HEADER</header>
<header>${root.basedir}/LICENSE.header</header>
<!--Just check headers of everything in the /src directory -->
<includes>
<include>src/**</include>
Expand Down

0 comments on commit d5caa24

Please sign in to comment.