Skip to content

Commit b0d5904

Browse files
committed
Use karaf-maven-plugin 4.2.6 to create an apache karaf feature for jackson-dataformat-cbor to fix (FasterXML#181)
1 parent bce0459 commit b0d5904

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

cbor/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ encoded data using Jackson abstractions (streaming API, data binding, tree model
5959
<groupId>org.moditect</groupId>
6060
<artifactId>moditect-maven-plugin</artifactId>
6161
</plugin>
62+
<plugin>
63+
<groupId>org.apache.karaf.tooling</groupId>
64+
<artifactId>karaf-maven-plugin</artifactId>
65+
</plugin>
6266
</plugins>
6367
</build>
6468
</project>

cbor/src/main/feature/feature.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<features xmlns="http://karaf.apache.org/xmlns/features/v1.6.0" name="${project.artifactId}">
3+
<repository>mvn:com.fasterxml.jackson.core/jackson-databind/${jackson.version.databind}/xml/features</repository>
4+
<feature name="${project.artifactId}">
5+
<feature>jackson-databind</feature>
6+
</feature>
7+
</features>

0 commit comments

Comments
 (0)