Skip to content

Commit

Permalink
Fix #1385: produce test-support jar (#1386)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder authored Jan 12, 2025
1 parent 4f7aaf5 commit 93a91d8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ tools.jackson.core.*;version=${project.version}
</removedDependencies>
</configuration>
</plugin>

<!-- Main Artfact build (jar) first -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
Expand All @@ -249,6 +251,26 @@ tools.jackson.core.*;version=${project.version}

</configuration>
</plugin>
<!-- And then Test JAR for other Jackson components -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>test-jar</id>
<phase>package</phase>
<goals>
<goal>test-jar</goal>
</goals>
<configuration>
<includes>
<include>tools/jackson/core/testsupport/**/*.*</include>
<include>tools/jackson/core/testutil/**/*.*</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>

<!-- 23-Mar-2023, tatu: [core#965] Need to put back Gradle module metadata marker -->
<plugin>
Expand Down

0 comments on commit 93a91d8

Please sign in to comment.