generator-runner-spi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>generator-runner-spi</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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-generator</artifactId> <version>1.0.0</version> </parent> <artifactId>generator-runner-spi</artifactId> <name>Vorto Code Generator Plugin Runner SPI</name> <properties> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>log4j-over-slf4j</artifactId> </exclusion> <exclusion> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-log4j</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <!-- Vorto --> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.core</artifactId> </dependency> <dependency> <groupId>org.eclipse.vorto.utilities</groupId> <artifactId>dsl-reader</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>generator-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>plugin-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>model-conversion</artifactId> <version>${project.version}</version> </dependency> <!-- Generator dependencies --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>repository-java-client</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.eclipse.xtend</groupId> <artifactId>xtend-maven-plugin</artifactId> </plugin> </plugins> </build> </project>