Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrás Szabolcs Nagy2016-10-05 13:42:43 +0000
committerAndrás Szabolcs Nagy2016-10-05 14:00:12 +0000
commitdabc46d9635ef37d20268a9307d5261732a5af7c (patch)
treecd68c4fbaf29c83d7d4100bee5fe5e0367916878
parentd2b8c1f71b657fca301183622341b1d1c8f19ccd (diff)
downloadorg.eclipse.viatra-dabc46d9635ef37d20268a9307d5261732a5af7c.tar.gz
org.eclipse.viatra-dabc46d9635ef37d20268a9307d5261732a5af7c.tar.xz
org.eclipse.viatra-dabc46d9635ef37d20268a9307d5261732a5af7c.zip
[503318] viatra-dse-runtime maven project
-rw-r--r--maven/viatra-dse-runtime/.project17
-rw-r--r--maven/viatra-dse-runtime/.settings/org.eclipse.m2e.core.prefs4
-rw-r--r--maven/viatra-dse-runtime/pom.xml85
-rw-r--r--releng/org.eclipse.viatra.parent.dse/pom.xml1
4 files changed, 107 insertions, 0 deletions
diff --git a/maven/viatra-dse-runtime/.project b/maven/viatra-dse-runtime/.project
new file mode 100644
index 000000000..457abf15a
--- /dev/null
+++ b/maven/viatra-dse-runtime/.project
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>viatra-dse-runtime</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.m2e.core.maven2Builder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.m2e.core.maven2Nature</nature>
+ </natures>
+</projectDescription>
diff --git a/maven/viatra-dse-runtime/.settings/org.eclipse.m2e.core.prefs b/maven/viatra-dse-runtime/.settings/org.eclipse.m2e.core.prefs
new file mode 100644
index 000000000..f897a7f1c
--- /dev/null
+++ b/maven/viatra-dse-runtime/.settings/org.eclipse.m2e.core.prefs
@@ -0,0 +1,4 @@
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
diff --git a/maven/viatra-dse-runtime/pom.xml b/maven/viatra-dse-runtime/pom.xml
new file mode 100644
index 000000000..55b380af5
--- /dev/null
+++ b/maven/viatra-dse-runtime/pom.xml
@@ -0,0 +1,85 @@
+<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>
+ <artifactId>viatra-dse-runtime</artifactId>
+ <name>VIATRA Design Space Exploration Runtime (Incubation)</name>
+
+ <parent>
+ <artifactId>org.eclipse.viatra.parent.dse</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.15.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.parent.dse/pom.xml</relativePath>
+ </parent>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>viatra-query-runtime</artifactId>
+ <version>${viatra.main.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>viatra-transformation-runtime</artifactId>
+ <version>${viatra.main.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>org.eclipse.viatra.dse</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>org.eclipse.viatra.dse.genetic</artifactId>
+ <version>${project.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>*</groupId>
+ <artifactId>*</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>buildnumber-maven-plugin</artifactId>
+ <version>1.4</version>
+ <executions>
+ <execution>
+ <phase>validate</phase>
+ <goals>
+ <goal>create</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <doCheck>false</doCheck>
+ <doUpdate>false</doUpdate>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ </plugin>
+ </plugins>
+ </build>
+</project> \ No newline at end of file
diff --git a/releng/org.eclipse.viatra.parent.dse/pom.xml b/releng/org.eclipse.viatra.parent.dse/pom.xml
index 98e298512..93a2058b3 100644
--- a/releng/org.eclipse.viatra.parent.dse/pom.xml
+++ b/releng/org.eclipse.viatra.parent.dse/pom.xml
@@ -14,6 +14,7 @@
<module>../../dse/plugins/org.eclipse.viatra.dse</module>
<module>../../dse/plugins/org.eclipse.viatra.dse.genetic</module>
<module>../../dse/features/org.eclipse.viatra.dse.feature</module>
+ <module>../../maven/viatra-dse-runtime</module>
</modules>
<parent>

Back to the top