blob: ec28090fb53514315d1969853b7bafc35404cf6f [file] [log] [blame]
<?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 POM (i.e., Engines) -->
<parent>
<groupId>org.eclipse.papyrus.moka</groupId>
<artifactId>org.eclipse.papyrus.moka.bundles.core.engines</artifactId>
<version>3.0.0-SNAPSHOT</version>
</parent>
<!-- POM Description -->
<artifactId>org.eclipse.papyrus.moka.fuml</artifactId>
<packaging>eclipse-plugin</packaging>
<name>org.eclipse.papyrus.moka.fuml</name>
<description>Execution engine implementing fUML (Semantics of a Foundational Subset for. Executable UML Models)</description>
<!-- Build specificities -->
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.9</version>
<configuration>
<complianceLevel>1.8</complianceLevel>
</configuration>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<verbose>true</verbose>
<showWeaveInfo>true</showWeaveInfo>
<aspectDirectory>${project.basedir}/aspects</aspectDirectory>
<source>1.8</source>
<target>1.8</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>