<?xml version="1.0" encoding="UTF-8"?> <!-- /********************************************************************* * Copyright (c) 2022 Kentyou and others * * This program and the accompanying materials are made * available under the terms of the Eclipse Public License 2.0 * which is available at https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 **********************************************************************/ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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> <groupId>org.eclipse.sensinact.gateway.distribution.features</groupId> <artifactId>features</artifactId> <version>0.0.2-SNAPSHOT</version> </parent> <groupId>org.eclipse.sensinact.gateway.distribution.features</groupId> <artifactId>core-feature</artifactId> <version>0.0.2-SNAPSHOT</version> <packaging>pom</packaging> <name>Eclipse sensiNact core Feature</name> <description>This project contains a feature representing the core of sensiNact</description> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> <comments>Except for 3rd party content and examples.</comments> </license> </licenses> <dependencies> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>annotation</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>api</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>emf-api</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>impl</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core.models</groupId> <artifactId>provider</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core.models</groupId> <artifactId>metadata</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>org.eclipse.sensinact.gateway.core</groupId> <artifactId>geo-json</artifactId> <version>${gateway.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.apache.aries.component-dsl</groupId> <artifactId>org.apache.aries.component-dsl.component-dsl</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.service.typedevent</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.util.pushstream</artifactId> </dependency> <dependency> <groupId>org.apache.aries.typedevent</groupId> <artifactId>org.apache.aries.typedevent.bus</artifactId> </dependency> <dependency> <groupId>org.eclipse.emf</groupId> <artifactId>org.eclipse.emf.common</artifactId> </dependency> <dependency> <groupId>org.eclipse.emf</groupId> <artifactId>org.eclipse.emf.ecore</artifactId> </dependency> <dependency> <groupId>org.eclipse.emf</groupId> <artifactId>org.eclipse.emf.ecore.xmi</artifactId> </dependency> <dependency> <groupId>org.geckoprojects.emf</groupId> <artifactId>org.gecko.emf.osgi.api</artifactId> </dependency> <dependency> <groupId>org.geckoprojects.emf</groupId> <artifactId>org.gecko.emf.osgi.component.minimal</artifactId> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${metrics.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>gather-test-features</id> <configuration> <skip>false</skip> <artifactItems> <artifactItem> <groupId>org.eclipse.sensinact.gateway.distribution.features</groupId> <artifactId>gogo-shell-feature</artifactId> <version>${revision}${changelist}</version> <type>json</type> <classifier>osgifeature</classifier> <destFileName>gogo-shell-feature.json</destFileName> </artifactItem> </artifactItems> </configuration> </execution> <execution> <id>create-test-repo</id> <configuration> <skip>false</skip> <artifactItems> <artifactItem> <groupId>org.eclipse.sensinact.gateway.distribution.features</groupId> <artifactId>gogo-shell-feature</artifactId> <version>${revision}${changelist}</version> <type>zip</type> <classifier>osgifeaturerepo</classifier> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> </plugins> </build> </project>