<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.sensinact.gateway.examples</groupId> <artifactId>examples</artifactId> <version>${revision}${changelist}</version> </parent> <artifactId>writable</artifactId> <name>Example writable</name> <description>The writable module contains examples showing how to set data in a device</description> <dependencies> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.component.annotations</artifactId> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>annotation</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> </plugin> </plugins> </build> </project>