Skip to content

Commit

Permalink
build(objectionary#909): add plugin to copy license from root
Browse files Browse the repository at this point in the history
  • Loading branch information
l3r8yJ committed Dec 10, 2024
1 parent 94aef76 commit ff93972
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
24 changes: 24 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,30 @@ SOFTWARE.
</testResource>
</testResources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>compile</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}</outputDirectory>
<resources>
<resource>
<directory>${project.basedir}</directory>
<includes>
<include>LICENSE.txt</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
Expand Down
21 changes: 0 additions & 21 deletions src/main/resources/LICENSE.txt

This file was deleted.

0 comments on commit ff93972

Please sign in to comment.