plugin-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>plugin-api</artifactId> <version>1.0.0</version> </dependency>
<!-- Copyright (c) 2020 Contributors to the Eclipse Foundation See the NOTICE file(s) distributed with this work for additional information regarding copyright ownership. 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 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.eclipse.vorto</groupId> <artifactId>plugin-sdk</artifactId> <version>1.0.0</version> </parent> <artifactId>plugin-api</artifactId> <packaging>jar</packaging> <name>Vorto Plugin SDK API</name> <properties> <sonar.coverage.exclusions>src/main/xtend-gen/org/eclipse/vorto/plugin/generator/utils/javatemplates/*, src/main/java/org/eclipse/vorto/plugin/generator/**/*</sonar.coverage.exclusions> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <goals> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.core</artifactId> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>model</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>model-conversion</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto.utilities</groupId> <artifactId>dsl-reader</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3.3</version> </dependency> <dependency> <groupId>org.eclipse.emf</groupId> <artifactId>org.eclipse.emf.ecore</artifactId> <version>2.15.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> <scope>test</scope> </dependency> </dependencies> </project>