-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pom.xml file for Acceleo build and switch to v0.4.1
- Loading branch information
Showing
8 changed files
with
73 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!-- | ||
Copyright (c) 2020 DisCo Group - Universidad de Zaragoza. | ||
This program and the accompanying materials | ||
are made available under the terms of the Eclipse Public License 1.0 | ||
which accompanies this distribution, and is available at | ||
https://www.eclipse.org/legal/epl-1.0/ | ||
SPDX-License-Identifier: EPL-1.0 | ||
Contributors: | ||
Abel Gómez | ||
--> | ||
<!-- | ||
This plugin requires an explicit pom.xml since Tycho does not call the Acceleo | ||
builder by default | ||
--> | ||
<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>es.unizar.disco.simulation</groupId> | ||
<artifactId>bundles</artifactId> | ||
<version>0.4.1-SNAPSHOT</version> | ||
</parent> | ||
<groupId>es.unizar.disco.simulation</groupId> | ||
<artifactId>es.unizar.disco.pnml.utils</artifactId> | ||
<packaging>eclipse-plugin</packaging> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.acceleo</groupId> | ||
<artifactId>org.eclipse.acceleo.maven</artifactId> | ||
<version>${org.eclipse.acceleo.maven.version}</version> | ||
<executions> | ||
<execution> | ||
<phase>compile</phase> | ||
<goals> | ||
<goal>acceleo-compile</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<useBinaryResources>false</useBinaryResources> | ||
<usePlatformResourcePath>true</usePlatformResourcePath> | ||
<acceleoProject> | ||
<root>${project.basedir}</root> | ||
<entries> | ||
<entry> | ||
<input>src</input> | ||
<output>target/classes</output> | ||
</entry> | ||
</entries> | ||
</acceleoProject> | ||
<packagesToRegister> | ||
<packageToRegister>es.unizar.disco.pnextensions.pnconstants.PnconstantsPackage</packageToRegister> | ||
<packageToRegister>fr.lip6.move.pnml.ptnet.PtnetPackage</packageToRegister> | ||
</packagesToRegister> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters