modification on Maven architecture
authorBruno Sinou <bsinou@argeo.org>
Wed, 12 Jan 2011 14:42:54 +0000 (14:42 +0000)
committerBruno Sinou <bsinou@argeo.org>
Wed, 12 Jan 2011 14:42:54 +0000 (14:42 +0000)
git-svn-id: https://svn.argeo.org/commons/trunk@4011 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

eclipse/features/org.argeo.eclipse.dep.common/p2.inf [new file with mode: 0644]
eclipse/features/org.argeo.eclipse.dep.common/pom.xml [new file with mode: 0644]

diff --git a/eclipse/features/org.argeo.eclipse.dep.common/p2.inf b/eclipse/features/org.argeo.eclipse.dep.common/p2.inf
new file mode 100644 (file)
index 0000000..0423aa5
--- /dev/null
@@ -0,0 +1,2 @@
+properties.1.name=org.eclipse.equinox.p2.type.category
+properties.1.value=true
\ No newline at end of file
diff --git a/eclipse/features/org.argeo.eclipse.dep.common/pom.xml b/eclipse/features/org.argeo.eclipse.dep.common/pom.xml
new file mode 100644 (file)
index 0000000..2ef6940
--- /dev/null
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/maven-v4_0_0.xsd">
+       <modelVersion>4.0.0</modelVersion>
+       <parent>
+               <groupId>org.argeo.commons.eclipse</groupId>
+               <artifactId>features</artifactId>
+               <version>0.2.2-SNAPSHOT</version>
+               <relativePath>..</relativePath>
+       </parent>
+       <artifactId>org.argeo.eclipse.dep.common</artifactId>
+       <name>Argeo Commons RCP Dependencies</name>
+       <build>
+               <plugins>
+                       <plugin>
+                               <groupId>org.argeo.maven.plugins</groupId>
+                               <artifactId>maven-argeo-osgi-plugin</artifactId>
+                       </plugin>
+               </plugins>
+       </build>
+       <dependencies>
+               <!-- Eclipse -->
+               <dependency>
+                       <groupId>org.eclipse.core</groupId>
+                       <artifactId>org.eclipse.core.runtime</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.swt</groupId>
+                       <artifactId>org.eclipse.swt</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.swt</groupId>
+                       <artifactId>org.eclipse.swt.gtk.linux.x86_64</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.swt</groupId>
+                       <artifactId>org.eclipse.swt.gtk.linux.x86</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.swt</groupId>
+                       <artifactId>org.eclipse.swt.win32.win32.x86</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.core</groupId>
+                       <artifactId>org.eclipse.core.commands</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>com.ibm.icu</groupId>
+                       <artifactId>com.ibm.icu</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.equinox</groupId>
+                       <artifactId>org.eclipse.equinox.preferences</artifactId>
+                       <version>3.3.0</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.equinox</groupId>
+                       <artifactId>org.eclipse.equinox.launcher</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.equinox</groupId>
+                       <artifactId>org.eclipse.equinox.launcher.gtk.linux.x86_64</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.equinox</groupId>
+                       <artifactId>org.eclipse.equinox.launcher.gtk.linux.x86</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.eclipse.equinox</groupId>
+                       <artifactId>org.eclipse.equinox.launcher.win32.win32.x86</artifactId>
+               </dependency>
+       </dependencies>
+</project>