blob: fbaae665dfaaa51983f772e73546949df4dadf22 [file] [log] [blame]
<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.plugins</artifactId>
<version>4.1.0-SNAPSHOT</version>
</parent>
<!-- POM Description -->
<artifactId>org.eclipse.papyrus.moka.pssm</artifactId>
<packaging>eclipse-plugin</packaging>
<name>org.eclipse.papyrus.moka.pssm</name>
<description>Execution engine implementing PSSM (Precise Semantics for UML State Machines)</description>
<!-- Build specificities -->
<build>
<plugins>
<plugin>
<groupId>com.nickwongdev</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.12.1</version>
<configuration>
<complianceLevel>11</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>11</source>
<target>11</target>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>