Skip to content

Commit

Permalink
Exclude examples directory when building artifacts (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
evanfuller authored Feb 23, 2022
1 parent 2a05fe6 commit 6384a11
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,12 @@
<version>3.2.1</version>
<executions>
<execution>
<configuration>
<excludes>
<exclude>ai/nightfall/examples</exclude>
<exclude>ai/nightfall/examples/*</exclude>
</excludes>
</configuration>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
Expand All @@ -103,6 +109,10 @@
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
<excludes>
<exclude>ai/nightfall/examples</exclude>
<exclude>ai/nightfall/examples/*</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
Expand All @@ -111,6 +121,11 @@
<version>3.3.2</version>
<executions>
<execution>
<configuration>
<sourceFileExcludes>
<exclude>ai/nightfall/examples/*.java</exclude>
</sourceFileExcludes>
</configuration>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
Expand Down

0 comments on commit 6384a11

Please sign in to comment.