]> git.argeo.org Git - gpl/argeo-slc.git/commitdiff
Introduce Maven Qooxdoo plugin
authorMathieu Baudier <mbaudier@argeo.org>
Sun, 7 Dec 2008 08:51:24 +0000 (08:51 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Sun, 7 Dec 2008 08:51:24 +0000 (08:51 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk/maven@1912 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

maven-argeo-qooxdoo-plugin/.project [new file with mode: 0644]
maven-argeo-qooxdoo-plugin/pom.xml [new file with mode: 0644]

diff --git a/maven-argeo-qooxdoo-plugin/.project b/maven-argeo-qooxdoo-plugin/.project
new file mode 100644 (file)
index 0000000..1ee4601
--- /dev/null
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>maven-argeo-qooxdoo-plugin</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+               <buildCommand>
+                       <name>org.maven.ide.eclipse.maven2Builder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+               <nature>org.maven.ide.eclipse.maven2Nature</nature>
+       </natures>
+</projectDescription>
diff --git a/maven-argeo-qooxdoo-plugin/pom.xml b/maven-argeo-qooxdoo-plugin/pom.xml
new file mode 100644 (file)
index 0000000..d0e06ec
--- /dev/null
@@ -0,0 +1,75 @@
+<project>\r
+       <modelVersion>4.0.0</modelVersion>\r
+       <groupId>org.argeo.slc.maven</groupId>\r
+       <artifactId>maven-qooxdoo-plugin</artifactId>\r
+       <version>0.8.0-SNAPSHOT</version>\r
+       <packaging>maven-plugin</packaging>\r
+       <name>Argeo Qooxdoo Plugin</name>\r
+\r
+       <build>\r
+               <plugins>\r
+                       <plugin>\r
+                               <artifactId>maven-compiler-plugin</artifactId>\r
+                               <configuration>\r
+                                       <source>1.4</source>\r
+                                       <target>1.4</target>\r
+                               </configuration>\r
+                       </plugin>\r
+                       <plugin>\r
+                               <artifactId>maven-plugin-plugin</artifactId>\r
+                               <dependencies>\r
+                                       <dependency>\r
+                                               <groupId>org.apache.maven</groupId>\r
+                                               <artifactId>maven-plugin-tools-ant\r
+                                               </artifactId>\r
+                                               <version>2.1</version>\r
+                                       </dependency>\r
+                               </dependencies>\r
+                       </plugin>\r
+               </plugins>\r
+       </build>\r
+       <dependencies>\r
+               <dependency>\r
+                       <groupId>org.apache.maven</groupId>\r
+                       <artifactId>maven-plugin-api</artifactId>\r
+                       <version>2.0</version>\r
+               </dependency>\r
+               <dependency>\r
+                       <groupId>org.apache.maven</groupId>\r
+                       <artifactId>maven-script-ant</artifactId>\r
+                       <version>2.0.9</version>\r
+               </dependency>\r
+               <dependency>\r
+                       <groupId>org.apache.maven</groupId>\r
+                       <artifactId>maven-project</artifactId>\r
+                       <version>2.0.7</version>\r
+               </dependency>\r
+               <dependency>\r
+                       <groupId>ant-contrib</groupId>\r
+                       <artifactId>ant-contrib</artifactId>\r
+                       <version>1.0b2</version>\r
+                       <exclusions>\r
+                               <exclusion>\r
+                                       <groupId>ant</groupId>\r
+                                       <artifactId>ant</artifactId>\r
+                               </exclusion>\r
+                       </exclusions>\r
+               </dependency>\r
+       </dependencies>\r
+       <distributionManagement>\r
+               <repository>\r
+                       <uniqueVersion>false</uniqueVersion>\r
+                       <id>argeo-restricted</id>\r
+                       <name>Argeo FOSS Repository</name>\r
+                       <url>file:///var/argeo/maven2/argeo\r
+                       </url>\r
+               </repository>\r
+               <snapshotRepository>\r
+                       <uniqueVersion>true</uniqueVersion>\r
+                       <id>argeo-snapshots-restricted</id>\r
+                       <name>Argeo FOSS Snapshots Repository</name>\r
+                       <url>file:///var/argeo/maven2/argeo-snapshots\r
+                       </url>\r
+               </snapshotRepository>\r
+       </distributionManagement>\r
+</project>