ast
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.overturetool.core</groupId>
<artifactId>ast</artifactId>
<version>3.0.2</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.overturetool</groupId>
<artifactId>core</artifactId>
<version>3.0.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.overturetool.core</groupId>
<artifactId>ast</artifactId>
<name>The Overture Abstract Syntax Tree </name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>org.overture.ast.*</excludePackageNames>
</configuration>
</plugin>
<plugin>
<groupId>org.overturetool.astcreator</groupId>
<artifactId>astcreator-plugin</artifactId>
<version>${astcreator.version}</version>
<executions>
<execution>
<id>java</id>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- <deletePackageOnGenerate> -->
<!-- <param>vdm.generated.node</param> -->
<!-- <param>org.overture.ast</param> -->
<!-- </deletePackageOnGenerate> -->
<ast>overtureII.astv2</ast>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>add-source</id>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>${project.build.directory}/generated-sources/astCreator/</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/VDMToken.java</exclude>
<exclude>**/Pass.java</exclude>
<exclude>**/Release.java</exclude>
<exclude>**/Base64.java</exclude>
<exclude>**/Dialect.java</exclude>
<exclude>**/LexBooleanToken.java</exclude>
<exclude>**/LexCharacterToken.java</exclude>
<exclude>**/LexIntegerToken.java</exclude>
<exclude>**/LexKeywordToken.java</exclude>
<exclude>**/LexLocation.java</exclude>
<exclude>**/LexNameList.java</exclude>
<exclude>**/LexQuoteToken.java</exclude>
<exclude>**/LexRealToken.java</exclude>
<exclude>**/LexStringToken.java</exclude>
<exclude>**/LexToken.java</exclude>
<exclude>**/InternalException.java</exclude>
<exclude>**/Utils.java</exclude>
<exclude>**/Settings.java</exclude>
<exclude>**/ConfigBase.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Plugin for license headers-->
<!--This plugin's configuration is used to store Eclipse m2e settings
only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.overturetool.astcreator</groupId>
<artifactId>astcreator-plugin</artifactId>
<versionRange>${astcreator.version}</versionRange>
<goals>
<goal>generate</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute>
<runOnIncremental>false</runOnIncremental>
</execute>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>