diff options
| author | AndrĂ¡s Szabolcs Nagy | 2016-10-03 15:28:26 +0000 |
|---|---|---|
| committer | Zoltan Ujhelyi | 2016-10-04 11:09:08 +0000 |
| commit | d2b8c1f71b657fca301183622341b1d1c8f19ccd (patch) | |
| tree | 742840f12e149a77857b82ba1b45943647c6ff1c | |
| parent | 9ff2ef36a1b1d336398300e6fd75da9378f3ab84 (diff) | |
| download | org.eclipse.viatra-d2b8c1f71b657fca301183622341b1d1c8f19ccd.tar.gz org.eclipse.viatra-d2b8c1f71b657fca301183622341b1d1c8f19ccd.tar.xz org.eclipse.viatra-d2b8c1f71b657fca301183622341b1d1c8f19ccd.zip | |
[503318] Separate pom.xml for releasing DSE to the maven repo
Change-Id: I941094760d371faf77208f16cbb0350fa63a492c
| -rw-r--r-- | releng/org.eclipse.viatra.parent.dse/.project | 11 | ||||
| -rw-r--r-- | releng/org.eclipse.viatra.parent.dse/pom.xml | 42 | ||||
| -rw-r--r-- | releng/org.eclipse.viatra.parent.incubation/pom.xml | 4 |
3 files changed, 54 insertions, 3 deletions
diff --git a/releng/org.eclipse.viatra.parent.dse/.project b/releng/org.eclipse.viatra.parent.dse/.project new file mode 100644 index 000000000..6aff7b6e9 --- /dev/null +++ b/releng/org.eclipse.viatra.parent.dse/.project @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.eclipse.viatra.parent.dse</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + </buildSpec> + <natures> + </natures> +</projectDescription> diff --git a/releng/org.eclipse.viatra.parent.dse/pom.xml b/releng/org.eclipse.viatra.parent.dse/pom.xml new file mode 100644 index 000000000..98e298512 --- /dev/null +++ b/releng/org.eclipse.viatra.parent.dse/pom.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://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> + <artifactId>org.eclipse.viatra.parent.dse</artifactId> + <name>VIATRA Design Space Exploration</name> + <version>0.15.0-SNAPSHOT</version> + <url>http://eclipse.org/viatra</url> + <packaging>pom</packaging> + <modules> + + <!-- DSE --> + <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> + + </modules> + <parent> + <groupId>org.eclipse.viatra</groupId> + <artifactId>org.eclipse.viatra.parent.all</artifactId> + <version>1.5.0-SNAPSHOT</version> + <relativePath>../org.eclipse.viatra.parent.all/pom.xml</relativePath> + </parent> + <properties> + <viatra.incubation.version>0.15.0-SNAPSHOT</viatra.incubation.version> + </properties> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.eclipse.tycho</groupId> + <artifactId>tycho-versions-plugin</artifactId> + <version>${tycho.version}</version> + <configuration> + <properties>viatra.incubation.version</properties> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> +</project> diff --git a/releng/org.eclipse.viatra.parent.incubation/pom.xml b/releng/org.eclipse.viatra.parent.incubation/pom.xml index b3b6fd735..aa33e6b04 100644 --- a/releng/org.eclipse.viatra.parent.incubation/pom.xml +++ b/releng/org.eclipse.viatra.parent.incubation/pom.xml @@ -38,9 +38,7 @@ <module>../../cep/features/org.eclipse.viatra.cep.feature</module> <!-- DSE --> - <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>../org.eclipse.viatra.parent.dse</module> <!-- Addons --> <module>../../addon/plugins/org.eclipse.viatra.addon.querybyexample</module> |
