updater-wrapper
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>updater-wrapper</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.daisy.pipeline</groupId> <artifactId>framework-parent</artifactId> <version>1.14.10</version> <relativePath>../parent</relativePath> </parent> <artifactId>updater-wrapper</artifactId> <version>1.0.5</version> <packaging>bundle</packaging> <name>DAISY Pipeline 2 :: Updater</name> <dependencies> <dependency> <groupId>org.daisy.pipeline</groupId> <artifactId>common-utils</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <!--<Service-Component>OSGI-INF/updater.xml</Service-Component>--> </instructions> </configuration> </plugin> </plugins> </build> </project>