Skip to content

Commit

Permalink
Fix for DominoKit#58
Browse files Browse the repository at this point in the history
  • Loading branch information
foal authored May 14, 2022
1 parent 3f925e9 commit 557f382
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions domino-jackson-super/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,28 @@
<directory>src/main/java</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<executions>
<execution>
<id>remove-emu-classes</id>
<phase>prepare-package</phase>
<goals>
<goal>clean</goal>
</goals>
<configuration>
<excludeDefaultDirectories>true</excludeDefaultDirectories>
<filesets>
<fileset>
<directory>${project.build.directory}/classes/java</directory>
<includes><include>**/*.class</include></includes>
</fileset>
</filesets>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 557f382

Please sign in to comment.