<?xml version="1.0"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>common</artifactId> <groupId>info.textgrid.middleware</groupId> <version>1.0-SNAPSHOT</version> </parent> <groupId>info.textgrid.middleware</groupId> <artifactId>confclient</artifactId> <version>1.0-SNAPSHOT</version> <name>confclient</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <packaging>bundle</packaging> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.codehaus.jettison</groupId> <artifactId>jettison</artifactId> <!-- 1.3 SNAPSHOT is actually patched and locally packaged with maven-bundle-plugin 2.3.4, to prevent circualar osgi import --> <version>1.3-SNAPSHOT</version> </dependency> </dependencies> <build> <defaultGoal>package</defaultGoal> <finalName>confclient</finalName> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <version>${felix.version}</version> </plugin> </plugins> </build> </project>