org.eclipse.vorto.codegen.service.prosystfi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.codegen.service.prosystfi</artifactId> <version>0.9.0</version> </dependency>
<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>generators</artifactId> <version>0.9.0</version> </parent> <artifactId>org.eclipse.vorto.codegen.service.prosystfi</artifactId> <description> Generates Functional Items for the Prosyst Gateway (mBS) </description> <packaging>jar</packaging> <dependencies> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.codegen</artifactId> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.codegen.templates.java</artifactId> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.codegen.examples.prosystfi</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.vorto</groupId> <artifactId>org.eclipse.vorto.codegen.service</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <finalName>vorto-prosyst</finalName> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>org.eclipse.vorto.codegen.service.prosystfi.ProSystGeneratorMicroService</mainClass> </manifest> </archive> </configuration> </plugin> </plugins> </build> </project>