Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.m2m.atl.common')
-rw-r--r--plugins/org.eclipse.m2m.atl.common/META-INF/MANIFEST.MF2
-rw-r--r--plugins/org.eclipse.m2m.atl.common/deploy/pom.xml29
-rw-r--r--plugins/org.eclipse.m2m.atl.common/pom.xml1
3 files changed, 31 insertions, 1 deletions
diff --git a/plugins/org.eclipse.m2m.atl.common/META-INF/MANIFEST.MF b/plugins/org.eclipse.m2m.atl.common/META-INF/MANIFEST.MF
index ecd2b6a7..d1e450e7 100644
--- a/plugins/org.eclipse.m2m.atl.common/META-INF/MANIFEST.MF
+++ b/plugins/org.eclipse.m2m.atl.common/META-INF/MANIFEST.MF
@@ -15,7 +15,7 @@ Export-Package: org.eclipse.m2m.atl.common,
org.eclipse.m2m.atl.common.Problem.PrimitiveTypes,
org.eclipse.m2m.atl.common.Problem.util
Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.emf.ecore;visibility:=reexport,
+ org.eclipse.emf.ecore;bundle-version="2.4.0";visibility:=reexport,
org.eclipse.osgi
Bundle-ClassPath: .
Bundle-ActivationPolicy: lazy
diff --git a/plugins/org.eclipse.m2m.atl.common/deploy/pom.xml b/plugins/org.eclipse.m2m.atl.common/deploy/pom.xml
new file mode 100644
index 00000000..84aee78b
--- /dev/null
+++ b/plugins/org.eclipse.m2m.atl.common/deploy/pom.xml
@@ -0,0 +1,29 @@
+<?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.m2m.atl</groupId>
+ <artifactId>org.eclipse.m2m.atl.common</artifactId>
+ <version>4.0.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <licenses>
+ <license>
+ <name>Eclipse Public License - v 1.0</name>
+ <url>http://www.eclipse.org/org/documents/epl-v10.html</url>
+ </license>
+ </licenses>
+ <dependencies>
+ <dependency>
+ <groupId>org.eclipse.emf</groupId>
+ <artifactId>org.eclipse.emf.common</artifactId>
+ <version>[2.4,3.0)</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.emf</groupId>
+ <artifactId>org.eclipse.emf.ecore</artifactId>
+ <version>[2.4,3.0)</version>
+ </dependency>
+ </dependencies>
+</project> \ No newline at end of file
diff --git a/plugins/org.eclipse.m2m.atl.common/pom.xml b/plugins/org.eclipse.m2m.atl.common/pom.xml
index f77c6d38..6debb868 100644
--- a/plugins/org.eclipse.m2m.atl.common/pom.xml
+++ b/plugins/org.eclipse.m2m.atl.common/pom.xml
@@ -50,6 +50,7 @@
<artifactId>${project.artifactId}</artifactId>
<version>${project.deployVersion}</version>
<packaging>jar</packaging>
+ <pomFile>${project.basedir}/deploy/pom.xml</pomFile>
</configuration>
</execution>
</executions>

Back to the top