-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Cornelius
committed
Aug 25, 2023
1 parent
ca30f17
commit 6253ffe
Showing
103 changed files
with
693 additions
and
2,977 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -1,11 +1,28 @@ | ||
# | ||
|
||
source.. = src/,\ | ||
src-gen/,\ | ||
xtend-gen/ | ||
bin.includes = .,\ | ||
model/,\ | ||
META-INF/,\ | ||
plugin.xml,\ | ||
plugin.properties | ||
bin.excludes = **/*.mwe2,\ | ||
**/*.xtend | ||
jars.compile.order = . | ||
source.. = src-gen/,\ | ||
src | ||
output.. = bin/ | ||
additional.bundles = org.eclipse.xtext.xbase,\ | ||
org.eclipse.xtext.common.types,\ | ||
org.eclipse.xtext.xtext.generator,\ | ||
org.eclipse.emf.codegen.ecore,\ | ||
org.eclipse.emf.mwe.utils,\ | ||
org.eclipse.emf.mwe2.launch,\ | ||
org.eclipse.emf.mwe2.lib,\ | ||
org.objectweb.asm,\ | ||
org.apache.commons.logging,\ | ||
org.apache.log4j,\ | ||
com.ibm.icu | ||
|
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,108 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<relativePath>../pom.xml</relativePath> | ||
<groupId>de.tu-bs.cbc</groupId> | ||
<artifactId>CorC-feat-autobuild_final</artifactId> | ||
<version>0.0.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<groupId>de.tu-bs.cbc</groupId> | ||
<artifactId>de.tu-bs.cs.isf.cbc.model</artifactId> | ||
<version>0.1.0-SNAPSHOT</version> | ||
<packaging>eclipse-plugin</packaging> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<version>3.0.0</version> | ||
<executions> | ||
<execution> | ||
<id>mwe2Launcher</id> | ||
<phase>generate-sources</phase> | ||
<goals> | ||
<goal>java</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<mainClass>org.eclipse.emf.mwe2.launch.runtime.Mwe2Launcher</mainClass> | ||
<arguments> | ||
<argument>/${project.basedir}/src/Model.mwe2</argument> | ||
<argument>-p</argument> | ||
<argument>rootPath=/${project.basedir}/..</argument> | ||
</arguments> | ||
<classpathScope>compile</classpathScope> | ||
<includePluginDependencies>true</includePluginDependencies> | ||
<cleanupDaemonThreads>false</cleanupDaemonThreads><!-- see https://bugs.eclipse.org/bugs/show_bug.cgi?id=475098#c3 --> | ||
</configuration> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.xtext</groupId> | ||
<artifactId>xtext-antlr-generator</artifactId> | ||
<version>2.1.1</version> | ||
</dependency> | ||
</dependencies> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.xtend</groupId> | ||
<artifactId>xtend-maven-plugin</artifactId> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>3.1.0</version> | ||
<configuration> | ||
<filesets combine.children="append"> | ||
<fileset> | ||
<directory>${project.basedir}/src-gen/</directory> | ||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
</fileset> | ||
</filesets> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
|
||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId> | ||
org.codehaus.mojo | ||
</groupId> | ||
<artifactId> | ||
exec-maven-plugin | ||
</artifactId> | ||
<versionRange> | ||
[1.2.1,) | ||
</versionRange> | ||
<goals> | ||
<goal>java</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore></ignore> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</project> |
Oops, something went wrong.