Skip to content

Commit

Permalink
Ensuring that LICENSE/NOTICE shows up in META-INF
Browse files Browse the repository at this point in the history
  • Loading branch information
joakime committed Nov 8, 2018
1 parent eab1625 commit e49617b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions api/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,17 @@
<description>JSR 356: Java API for WebSocket</description>
<url>https://projects.eclipse.org/projects/ee4j.websocket</url>

<build>
<resources>
<resource>
<directory>${project.basedir}/../../</directory>
<includes>
<include>LICENSE.md</include>
<include>NOTICE.md</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
</build>

</project>
10 changes: 10 additions & 0 deletions api/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@
<url>https://projects.eclipse.org/projects/ee4j.websocket</url>

<build>
<resources>
<resource>
<directory>${project.basedir}/../../</directory>
<includes>
<include>LICENSE.md</include>
<include>NOTICE.md</include>
</includes>
<targetPath>META-INF</targetPath>
</resource>
</resources>
<plugins>
<!--
Commented out as this plug-in currently breaks the build due to
Expand Down

0 comments on commit e49617b

Please sign in to comment.