setting up build
diff --git a/features/org.eclipse.viatra.modelobfuscator.feature/pom.xml b/features/org.eclipse.viatra.modelobfuscator.feature/pom.xml
new file mode 100644
index 0000000..ca3efe0
--- /dev/null
+++ b/features/org.eclipse.viatra.modelobfuscator.feature/pom.xml
@@ -0,0 +1,53 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra2.emf.runtime.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <version>${tycho.extras.version}</version>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/plugins/org.eclipse.viatra.modelobfuscator.runtime/pom.xml b/plugins/org.eclipse.viatra.modelobfuscator.runtime/pom.xml
new file mode 100644
index 0000000..2df520c
--- /dev/null
+++ b/plugins/org.eclipse.viatra.modelobfuscator.runtime/pom.xml
@@ -0,0 +1,54 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.runtime</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <build>
+ <resources>
+ <resource>
+ <directory>src</directory>
+ </resource>
+ <resource>
+ <directory>xtend-gen</directory>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <configuration>
+ <filesets>
+ <fileset>
+ <directory>xtend-gen</directory>
+ <excludes>
+ <exclude>keep.txt</exclude>
+ <exclude>.keep.txt</exclude>
+ </excludes>
+ </fileset>
+ </filesets>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.xtend</groupId>
+ <artifactId>xtend-maven-plugin</artifactId>
+ <version>${xtend.compiler.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/plugins/org.eclipse.viatra.modelobfuscator.tests/pom.xml b/plugins/org.eclipse.viatra.modelobfuscator.tests/pom.xml
new file mode 100644
index 0000000..f959ba6
--- /dev/null
+++ b/plugins/org.eclipse.viatra.modelobfuscator.tests/pom.xml
@@ -0,0 +1,31 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.tests</artifactId>
+ <packaging>eclipse-test-plugin</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.xtend</groupId>
+ <artifactId>xtend-maven-plugin</artifactId>
+ <version>${xtend.compiler.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>compile</goal>
+ <goal>testCompile</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
diff --git a/plugins/org.eclipse.viatra.modelobfuscator.ui/pom.xml b/plugins/org.eclipse.viatra.modelobfuscator.ui/pom.xml
new file mode 100644
index 0000000..33a1092
--- /dev/null
+++ b/plugins/org.eclipse.viatra.modelobfuscator.ui/pom.xml
@@ -0,0 +1,13 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.ui</artifactId>
+ <packaging>eclipse-plugin</packaging>
+</project>
\ No newline at end of file
diff --git a/releng/org.eclipse.viatra.modelobfuscator.parent/.project b/releng/org.eclipse.viatra.modelobfuscator.parent/.project
new file mode 100644
index 0000000..18a2f6f
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.parent/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.viatra.modelobfuscator.parent</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml b/releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml
new file mode 100644
index 0000000..64f425f
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml
@@ -0,0 +1,227 @@
+<?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>
+ <groupId>org.eclipse.viatra</groupId>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <name>VIATRA Model Obfuscator</name>
+ <url>http://eclipse.org/viatra2</url>
+ <version>0.7.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>../../plugins/org.eclipse.viatra.modelobfuscator.runtime</module>
+ <module>../../plugins/org.eclipse.viatra.modelobfuscator.ui</module>
+ <!-- Needs BPM example metamodel as dependency
+ <module>../../plugins/org.eclipse.viatra.modelobfuscator.tests</module>
+ -->
+
+ <module>../../releng/org.eclipse.viatra.modelobfuscator.target</module>
+ </modules>
+ <properties>
+ <tycho.version>0.18.1</tycho.version>
+ <tycho.extras.version>0.18.1</tycho.extras.version>
+ <tycho.groupId>org.eclipse.tycho</tycho.groupId>
+ <tycho.scmUrl>scm:git:git://git.eclipse.org/gitroot/viatra2/org.eclipse.viatra.modelobfuscator.git</tycho.scmUrl>
+ <eclipse.bugzillaUrl>https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Viatra</eclipse.bugzillaUrl>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <maven.compiler.showWarnings>true</maven.compiler.showWarnings>
+ <jacoco.version>0.6.3.201306030806</jacoco.version>
+ <jacoco.targetdir>${project.basedir}/../../target</jacoco.targetdir>
+ <xtend.compiler.version>2.6.1</xtend.compiler.version>
+ <incquery.repository.url>http://download.eclipse.org/incquery/updates/releases</incquery.repository.url>
+ <incquery.compiler.version>0.8.0-SNAPSHOT</incquery.compiler.version>
+ <!-- Sonar -->
+ <sonar.version>3.6</sonar.version>
+ <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
+ <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
+ <sonar.jacoco.reportPath>${jacoco.targetdir}/jacoco.exec</sonar.jacoco.reportPath>
+ </properties>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-maven-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <extensions>true</extensions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <resolver>p2</resolver>
+ <target>
+ <artifact>
+ <groupId>org.eclipse.viatra.modelobfuscator</groupId>
+ <artifactId>org.eclipse.viatra.modelobfuscator.target</artifactId>
+ <version>0.7.0-SNAPSHOT</version>
+ </artifact>
+ </target>
+ <ignoreTychoRepositories>true</ignoreTychoRepositories>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-source-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>plugin-source</id>
+ <goals>
+ <goal>plugin-source</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-packaging-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <sourceReferences>
+ <generate>true</generate>
+ </sourceReferences>
+ </configuration>
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-sourceref-jgit</artifactId>
+ <version>${tycho.extras.version}</version>
+ </dependency>
+ </dependencies>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-publisher-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <publishArtifacts>true</publishArtifacts>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <version>${jacoco.version}</version>
+ <configuration>
+ <destFile>${jacoco.targetdir}/jacoco.exec</destFile>
+
+ </configuration>
+ <executions>
+ <execution>
+ <goals>
+ <goal>prepare-agent</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-clean-plugin</artifactId>
+ <version>2.5</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-compiler-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-repository-plugin</artifactId>
+ <version>${tycho.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.sonar</groupId>
+ <artifactId>sonar-maven3-plugin</artifactId>
+ <version>${sonar.version}</version>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.xtend</groupId>
+ <artifactId>xtend-maven-plugin</artifactId>
+ <version>${xtend.compiler.version}</version>
+ <configuration>
+ <!-- need to prefix by basedir to generate to currently built module -->
+ <outputDirectory>${basedir}/xtend-gen</outputDirectory>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+ <profiles>
+ <profile>
+ <id>eclipse_tooling</id>
+ <activation>
+ <property>
+ <name>!maven.runtime</name>
+ </property>
+ </activation>
+ <modules>
+ <module>../../features/org.eclipse.viatra.modelobfuscator.feature</module>
+ <module>../../releng/org.eclipse.viatra.modelobfuscator.update</module>
+ </modules>
+ </profile>
+ <profile>
+ <id>maven_runtime</id>
+ <activation>
+ <property>
+ <name>maven.runtime</name>
+ </property>
+ </activation>
+ <modules>
+ <module>../../maven/viatra-modelobfucator-runtime</module>
+ </modules>
+ </profile>
+ </profiles>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>incquery-snapshots</id>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <url>https://repo.eclipse.org/content/repositories/emf-incquery-snapshots/</url>
+ </pluginRepository>
+ </pluginRepositories>
+ <repositories>
+ <repository>
+ <id>incquery.update</id>
+ <layout>p2</layout>
+ <url>${incquery.repository.url}</url>
+ </repository>
+ <repository>
+ <id>incquery-snapshots</id>
+ <url>https://repo.eclipse.org/content/repositories/emf-incquery-snapshots/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ <updatePolicy>always</updatePolicy>
+ </snapshots>
+ </repository>
+ <repository>
+ <id>incquery-releases</id>
+ <url>https://repo.eclipse.org/content/repositories/emf-incquery-releases/</url>
+ </repository>
+ </repositories>
+ <scm>
+ <connection>${tycho.scmUrl}</connection>
+ <url>http://git.eclipse.org/c/viatra2/org.eclipse.viatra.modelobfuscator.git/</url>
+ </scm>
+ <ciManagement>
+ <url>https://hudson.eclipse.org/hudson/</url>
+ <system>Hudson</system>
+ </ciManagement>
+ <issueManagement>
+ <url>${eclipse.bugzillaUrl}</url>
+ <system>Bugzilla</system>
+ </issueManagement>
+</project>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.target/.project b/releng/org.eclipse.viatra.modelobfuscator.target/.project
new file mode 100644
index 0000000..ef201e1
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.target/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.viatra.modelobfuscator.target</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.target/org.eclipse.viatra.modelobfuscator.target.target b/releng/org.eclipse.viatra.modelobfuscator.target/org.eclipse.viatra.modelobfuscator.target.target
new file mode 100644
index 0000000..2a25639
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.target/org.eclipse.viatra.modelobfuscator.target.target
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<?pde version="3.8"?><target name="modelobfuscator" sequenceNumber="-1"/>
+<target name="emfpattern" sequenceNumber="24">
+ <locations>
+ <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
+ <unit id="org.eclipse.gmf.runtime.notation.sdk.feature.group" version="1.5.0.v20110426-2159-47D08xGD6ExNBM7CIJa3CIKK9t84"/>
+ <unit id="org.eclipse.gmf.runtime.sdk.feature.group" version="1.5.0.v20110607-1200-67N09E9QnChoWswz-3wf_rz0kQ8Y"/>
+ <unit id="org.eclipse.graphiti.sdk.feature.feature.group" version="0.8.2.v20120215-0845"/>
+ <repository location="http://download.eclipse.org/releases/indigo"/>
+ </location>
+ <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
+ <unit id="de.itemis.xtext.antlr.feature.feature.group" version="2.0.0.v201108011202"/>
+ <unit id="de.itemis.xtext.antlr.sdk.feature.group" version="2.0.0.v201108011202"/>
+ <repository location="http://download.itemis.com/updates/releases"/>
+ </location>
+ <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
+ <unit id="org.eclipse.platform.sdk" version="3.7.2.M20120208-0800"/>
+ <unit id="org.eclipse.sdk.ide" version="3.7.2.M20120208-0800"/>
+ <repository location="http://download.eclipse.org/eclipse/updates/3.7"/>
+ </location>
+ <location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
+ <unit id="org.eclipse.emf.sdk.feature.group" version="2.10.0.v20140519-0339"/>
+ <unit id="org.eclipse.xtend.sdk.feature.group" version="2.6.1.v201406120726"/>
+ <unit id="org.eclipse.xtext.sdk.feature.group" version="2.6.1.v201406120726"/>
+ <repository location="http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases"/>
+ </location>
+ </locations>
+ <targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+</target>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.target/pom.xml b/releng/org.eclipse.viatra.modelobfuscator.target/pom.xml
new file mode 100644
index 0000000..2bdc3f9
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.target/pom.xml
@@ -0,0 +1,14 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.target</artifactId>
+ <packaging>eclipse-target-definition</packaging>
+
+</project>
\ No newline at end of file
diff --git a/releng/org.eclipse.viatra.modelobfuscator.update/.project b/releng/org.eclipse.viatra.modelobfuscator.update/.project
new file mode 100644
index 0000000..e4b18e8
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.update/.project
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.eclipse.viatra.modelobfuscator.update</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.update/category.xml b/releng/org.eclipse.viatra.modelobfuscator.update/category.xml
new file mode 100644
index 0000000..656ccb0
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.update/category.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <feature url="features/org.eclipse.viatra.modelobfuscator.feature_0.7.0.qualifier.jar" id="org.eclipse.viatra.modelobfuscator.feature" version="0.7.0.qualifier">
+ <category name="org.eclipse.viatra.modelobfuscator.category"/>
+ </feature>
+ <category-def name="org.eclipse.viatra.modelobfuscator.category" label="VIATRA Model Obfuscator"/>
+</site>
diff --git a/releng/org.eclipse.viatra.modelobfuscator.update/pom.xml b/releng/org.eclipse.viatra.modelobfuscator.update/pom.xml
new file mode 100644
index 0000000..88d1caa
--- /dev/null
+++ b/releng/org.eclipse.viatra.modelobfuscator.update/pom.xml
@@ -0,0 +1,33 @@
+<?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>
+ <parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.parent</artifactId>
+ <groupId>org.eclipse.viatra</groupId>
+ <version>0.7.0-SNAPSHOT</version>
+ <relativePath>../../releng/org.eclipse.viatra.modelobfuscator.parent/pom.xml</relativePath>
+ </parent>
+ <artifactId>org.eclipse.viatra.modelobfuscator.update</artifactId>
+ <packaging>eclipse-repository</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-repository-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <repositoryName>VIATRA Model Obfuscator</repositoryName>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.jacoco</groupId>
+ <artifactId>jacoco-maven-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
\ No newline at end of file