Skip to content

Commit

Permalink
DCA11Y-1145: Bundle the license
Browse files Browse the repository at this point in the history
  • Loading branch information
atl-mk committed Sep 27, 2024
1 parent 3f1d52a commit b313e17
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,32 @@
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy-license</id>
<phase>process-sources</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
<overwrite>true</overwrite>
<resources>
<resource>
<directory>${user.dir}</directory>
<includes>
<include>LICENSE</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit b313e17

Please sign in to comment.