| <?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.eclipse.app4mc.cloud</groupId> |
| <artifactId>org.eclipse.app4mc.cloud.amlt2systemc</artifactId> |
| <version>1.0.0-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| <artifactId>amlt2systemc-service</artifactId> |
| |
| <description>The main bundle for the APP4MC Amalthea to SystemC Transformation Cloud Service</description> |
| |
| <properties> |
| <app4mc.version>1.1.0</app4mc.version> |
| <transformation.version>1.1.0-SNAPSHOT</transformation.version> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.osgi.enroute</groupId> |
| <artifactId>osgi-api</artifactId> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi.enroute</groupId> |
| <artifactId>enterprise-api</artifactId> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi.enroute</groupId> |
| <artifactId>test-bundles</artifactId> |
| <type>pom</type> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.aries.jax.rs</groupId> |
| <artifactId>org.apache.aries.jax.rs.jackson</artifactId> |
| <version>1.0.2</version> |
| </dependency> |
| |
| <!-- APP4MC Model --> |
| <dependency> |
| <groupId>org.eclipse.app4mc</groupId> |
| <artifactId>org.eclipse.app4mc.amalthea.model</artifactId> |
| <version>${app4mc.version}</version> |
| </dependency> |
| |
| <!-- APP4MC Transformation --> |
| <dependency> |
| <groupId>org.eclipse.app4mc.transformation</groupId> |
| <artifactId>org.eclipse.app4mc.transformation</artifactId> |
| <version>${transformation.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.app4mc.amlt2systemc</groupId> |
| <artifactId>org.eclipse.app4mc.amlt2systemc.m2t</artifactId> |
| <version>${transformation.version}</version> |
| <scope>runtime</scope> |
| </dependency> |
| |
| <!-- SessionLogger --> |
| <dependency> |
| <groupId>org.eclipse.app4mc</groupId> |
| <artifactId>org.eclipse.app4mc.util.sessionlog</artifactId> |
| <version>${app4mc.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.eclipse.app4mc</groupId> |
| <artifactId>org.eclipse.app4mc.util.sessionlog.file</artifactId> |
| <version>${app4mc.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>biz.aQute.bnd</groupId> |
| <artifactId>bnd-maven-plugin</artifactId> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |