Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 72442344e40bad22c9e0daf09e2eedd195710ca0 (plain) (tree)
1
                                      






























                                                                       
                                                           

                                                                          













                                                                        
         
<?xml version="1.0" encoding="UTF-8"?>
<project>
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<artifactId>org.eclipse.papyrus.developer</artifactId>
		<groupId>org.eclipse.papyrus</groupId>
		<version>0.0.1-SNAPSHOT</version>
	</parent>
	<artifactId>org.eclipse.papyrus.dev.types</artifactId>
	<groupId>org.eclipse.papyrus</groupId>
	<version>3.0.0-SNAPSHOT</version>
	<packaging>eclipse-plugin</packaging>
	<build>
        <plugins>
            <!-- Empty out the xtend-gen folder in the clean phase. -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-clean-plugin</artifactId>
                <configuration>
                    <filesets>
                        <fileset>
                            <directory>xtend-gen</directory>
                            <excludes>
                               <exclude>**/.gitignore</exclude>
                            </excludes>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>
            <!-- Generate Xtend sources in the compilation phase. -->
            <plugin>
                <groupId>org.eclipse.xtend</groupId>
                <artifactId>xtend-maven-plugin</artifactId>
				<configuration>
						<encoding>UTF-8</encoding>
				</configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>xtend-gen</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

Back to the top