Skip to content

Commit

Permalink
switch from bundle to jar packaging (#3684)
Browse files Browse the repository at this point in the history
Fixes #3680
  • Loading branch information
hboutemy authored Nov 28, 2022
1 parent 3e1c016 commit 1e1b361
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<artifactId>jackson-databind</artifactId>
<version>3.0.0-SNAPSHOT</version>
<name>jackson-databind</name>
<packaging>bundle</packaging>

<description>General data-binding functionality for Jackson: works on core streaming API</description>
<url>https://github.com/FasterXML/jackson</url>
<inceptionYear>2008</inceptionYear>
Expand Down Expand Up @@ -159,6 +159,29 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
Expand Down

0 comments on commit 1e1b361

Please sign in to comment.