Skip to content

Commit de3de6d

Browse files
committed
Use karaf-maven-plugin 4.2.6 to create an apache karaf feature for jackson-dataformat-smile to fix (FasterXML#18)
1 parent 36e5323 commit de3de6d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

smile/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ tree model)
5656
<groupId>org.moditect</groupId>
5757
<artifactId>moditect-maven-plugin</artifactId>
5858
</plugin>
59+
<plugin>
60+
<groupId>org.apache.karaf.tooling</groupId>
61+
<artifactId>karaf-maven-plugin</artifactId>
62+
</plugin>
5963
</plugins>
6064
</build>
6165
</project>

smile/src/main/feature/feature.xml

+7
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)