You are viewing a plain text version of this content. The canonical link for it is here.
Posted to doxia-commits@maven.apache.org by vs...@apache.org on 2008/04/22 15:14:19 UTC

svn commit: r650510 - in /maven/doxia/doxia-tools/trunk/doxia-ide/eclipse: ./ features/ features/org.apache.maven.doxia.ide.eclipse.feature/ plugins/ plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/ plugins/org.apache.maven.doxia.ide.eclipse.common.u...

Author: vsiveton
Date: Tue Apr 22 06:14:13 2008
New Revision: 650510

URL: http://svn.apache.org/viewvc?rev=650510&view=rev
Log:
o first try to mavenize the Eclipse features and plugins

Added:
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml   (with props)
    maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml   (with props)

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,520 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+
+<project
+  default="default"
+  basedir=".">
+
+  <description><![CDATA[
+    This Ant script downloads an Eclipse distribution depending your OS and the required Eclipse tools. You need around
+    500Mo space free.
+
+    Input properties:
+    * download.dir: if not set, an user interaction will be done by prompting for input.
+    * install.dir: if not set, an user interaction will be done by prompting for input.
+  ]]></description>
+
+  <!-- Eclipse SDK download URLs -->
+  <!-- @see http://www.eclipse.org/downloads/ -->
+  <property
+    name="eclipse.sdk.name"
+    value="eclipse-SDK-3.3.2" />
+  <property
+    name="eclipse.sdk.download.url"
+    value="http://download.eclipse.org/eclipse/downloads/drops/R-3.3.2-200802211800" />
+
+  <property
+    name="eclipse.sdk.download.win.url"
+    value="${eclipse.sdk.download.url}/${eclipse.sdk.name}-win32.zip" />
+  <property
+    name="eclipse.sdk.download.linux.url"
+    value="${eclipse.sdk.download.url}/${eclipse.sdk.name}-linux-gtk.tar.gz" />
+  <property
+    name="eclipse.sdk.download.mac.url"
+    value="${eclipse.sdk.download.url}/${eclipse.sdk.name}-macosx-carbon.tar.gz" />
+
+  <!-- Eclipse WTP download URLs -->
+  <!-- @see http://download.eclipse.org/webtools/downloads/ -->
+  <!-- Eclipse emf-sdo-xsd-SDK -->
+  <property
+    name="eclipse.emf-sdo-xsd-SDK.name"
+    value="emf-sdo-xsd-SDK-2.3.2" />
+  <property
+    name="eclipse.emf-sdo-xsd-SDK.download.url"
+    value="http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.2/R200802051830/${eclipse.emf-sdo-xsd-SDK.name}.zip" />
+  <!-- Eclipse GEF-SDK -->
+  <property
+    name="eclipse.GEF-SDK.name"
+    value="GEF-SDK-3.3.2" />
+  <property
+    name="eclipse.GEF-SDK.download.url"
+    value="http://download.eclipse.org/tools/gef/downloads/drops/3.3.2/R200802211602/${eclipse.GEF-SDK.name}.zip" />
+  <!-- Eclipse dtp-sdk -->
+  <property
+    name="eclipse.dtp-sdk.name"
+    value="dtp-sdk_1.5.2_022008" />
+  <property
+    name="eclipse.dtp-sdk.download.url"
+    value="http://download.eclipse.org/datatools/downloads/1.5/${eclipse.dtp-sdk.name}.zip" />
+  <!-- Eclipse wtp-sdk -->
+  <property
+    name="eclipse.wtp-sdk.name"
+    value="wtp-sdk-R-2.0.2-20080223205547" />
+  <property
+    name="eclipse.wtp-sdk.download.url"
+    value="http://download.eclipse.org/webtools/downloads/drops/R2.0/R-2.0.2-20080223205547/${eclipse.wtp-sdk.name}.zip" />
+
+  <!-- Environment -->
+  <property environment="env" />
+
+  <!-- ====================================================================== -->
+  <!-- Init build properties targets                                          -->
+  <!-- ====================================================================== -->
+  <target
+    name="init.download.dir"
+    unless="download.dir">
+    <input
+      message="Please enter the wanted download dir:"
+      addproperty="download.dir"
+      defaultvalue="${java.io.tmpdir}" />
+  </target>
+  <target
+    name="init.install.dir"
+    unless="install.dir">
+    <input
+      message="Please enter the wanted install dir:"
+      addproperty="install.dir"
+      defaultvalue="${java.io.tmpdir}" />
+  </target>
+  <target
+    name="init.build.properties"
+    depends="init.download.dir, init.install.dir" />
+
+  <!-- ====================================================================== -->
+  <!-- Init plateform targets                                                 -->
+  <!-- ====================================================================== -->
+  <target
+    name="init"
+    description="Set OS properties">
+    <condition property="windows">
+      <os family="windows" />
+    </condition>
+    <condition property="linux">
+      <os name="Linux" />
+    </condition>
+    <condition property="mac">
+      <os name="Mac OS X" />
+    </condition>
+  </target>
+
+  <target
+    name="init.windows"
+    if="windows">
+    <property
+      name="eclipse.sdk.url"
+      value="${eclipse.sdk.download.win.url}" />
+    <property
+      name="eclipse.sdk.zip"
+      value="${eclipse.sdk.name}-win32.zip" />
+  </target>
+  <target
+    name="init.unix"
+    if="unix"
+    unless="mac">
+    <property
+      name="eclipse.sdk.url"
+      value="${eclipse.sdk.download.linux.url}" />
+    <property
+      name="eclipse.sdk.tar.gz"
+      value="${eclipse.sdk.name}-linux-gtk.tar.gz" />
+  </target>
+  <target
+    name="init.linux"
+    if="linux">
+    <property
+      name="eclipse.sdk.url"
+      value="${eclipse.sdk.download.linux.url}" />
+    <property
+      name="eclipse.sdk.tar.gz"
+      value="${eclipse.sdk.name}-linux-gtk.tar.gz" />
+  </target>
+  <target
+    name="init.mac"
+    if="mac">
+    <property
+      name="eclipse.sdk.url"
+      value="${eclipse.sdk.download.mac.url}" />
+    <property
+      name="eclipse.sdk.tar.gz"
+      value="${eclipse.sdk.name}-macosx-carbon.tar.gz" />
+  </target>
+
+  <target
+    name="init.platform"
+    depends="init, init.windows, init.unix, init.linux, init.mac" />
+
+  <!-- ====================================================================== -->
+  <!-- Download targets                                                       -->
+  <!-- ====================================================================== -->
+  <!-- Eclipse SDK -->
+  <target
+    name="already.eclipse.sdk.zip.downloaded"
+    depends="init.platform"
+    if="eclipse.sdk.zip">
+    <available
+      file="${download.dir}/${eclipse.sdk.zip}"
+      type="file"
+      property="already.eclipse.sdk.present" />
+  </target>
+  <target
+    name="already.sdk.tar.gz.downloaded"
+    depends="init.platform"
+    if="eclipse.sdk.tar.gz">
+    <available
+      file="${download.dir}/${eclipse.sdk.tar.gz}"
+      type="file"
+      property="already.eclipse.sdk.present" />
+  </target>
+  <target
+    name="download.eclipse.sdk.zip"
+    depends="already.eclipse.sdk.zip.downloaded"
+    unless="already.eclipse.sdk.present"
+    if="eclipse.sdk.zip">
+    <get
+      src="${eclipse.sdk.url}"
+      dest="${download.dir}/${eclipse.sdk.zip}" />
+  </target>
+  <target
+    name="download.eclipse.sdk.tar.gz"
+    depends="already.sdk.tar.gz.downloaded"
+    unless="already.eclipse.sdk.present"
+    if="eclipse.sdk.tar.gz">
+    <get
+      src="${eclipse.sdk.url}"
+      dest="${download.dir}/${eclipse.sdk.tar.gz}" />
+  </target>
+  <target
+    name="download.eclipse.sdk"
+    depends="download.eclipse.sdk.zip, download.eclipse.sdk.tar.gz" />
+
+  <!-- Eclipse emf-sdo-xsd-SDK -->
+  <target name="already.emf-sdo-xsd-SDK.downloaded">
+    <available
+      file="${download.dir}/${eclipse.emf-sdo-xsd-SDK.name}.zip"
+      type="file"
+      property="already.emf-sdo-xsd-SDK.present" />
+  </target>
+  <target
+    name="download.emf-sdo-xsd-SDK"
+    depends="already.emf-sdo-xsd-SDK.downloaded"
+    unless="already.emf-sdo-xsd-SDK.present">
+    <get
+      src="${eclipse.emf-sdo-xsd-SDK.download.url}"
+      dest="${download.dir}/${eclipse.emf-sdo-xsd-SDK.name}.zip" />
+  </target>
+
+  <!-- Eclipse GEF-SDK -->
+  <target name="already.GEF-SDK.downloaded">
+    <available
+      file="${download.dir}/${eclipse.GEF-SDK.name}.zip"
+      type="file"
+      property="already.GEF-SDK.present" />
+  </target>
+  <target
+    name="download.GEF-SDK"
+    depends="already.GEF-SDK.downloaded"
+    unless="already.GEF-SDK.present">
+    <get
+      src="${eclipse.GEF-SDK.download.url}"
+      dest="${download.dir}/${eclipse.GEF-SDK.name}.zip"
+      verbose="true" />
+  </target>
+
+  <!-- Eclipse dtp-sdk -->
+  <target name="already.dtp-sdk.downloaded">
+    <available
+      file="${download.dir}/${eclipse.dtp-sdk.name}.zip"
+      type="file"
+      property="already.dtp-sdk.present" />
+  </target>
+  <target
+    name="download.dtp-sdk"
+    depends="already.dtp-sdk.downloaded"
+    unless="already.dtp-sdk.present">
+    <get
+      src="${eclipse.dtp-sdk.download.url}"
+      dest="${download.dir}/${eclipse.dtp-sdk.name}.zip" />
+  </target>
+
+  <!-- Eclipse wtp-sdk -->
+  <target name="already.wtp-sdk.downloaded">
+    <available
+      file="${download.dir}/${eclipse.wtp-sdk.name}.zip"
+      type="file"
+      property="already.wtp-sdk.present" />
+  </target>
+  <target
+    name="download.wtp-sdk"
+    depends="already.wtp-sdk.downloaded"
+    unless="already.wtp-sdk.present">
+    <get
+      src="${eclipse.wtp-sdk.download.url}"
+      dest="${download.dir}/${eclipse.wtp-sdk.name}.zip" />
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Uncompress targets                                                     -->
+  <!-- ====================================================================== -->
+  <!-- Eclipse SDK -->
+  <property
+    name="uncompress.eclipse.sdk.dir"
+    value="${eclipse.sdk.name}" />
+  <target name="already.eclipse.sdk.uncompress">
+    <available
+      file="${download.dir}/${uncompress.eclipse.sdk.dir}"
+      type="dir"
+      property="already.eclipse.sdk.uncompressed" />
+  </target>
+  <target
+    name="untar.eclipse.sdk"
+    depends="already.eclipse.sdk.uncompress, download.eclipse.sdk.tar.gz"
+    unless="already.eclipse.sdk.uncompressed"
+    if="eclipse.sdk.tar.gz">
+    <mkdir dir="${download.dir}/${uncompress.eclipse.sdk.dir}" />
+    <untar
+      src="${download.dir}/${eclipse.sdk.tar.gz}"
+      dest="${download.dir}/${uncompress.eclipse.sdk.dir}"
+      compression="gzip" />
+  </target>
+  <target
+    name="unzip.eclipse.sdk"
+    depends="already.eclipse.sdk.uncompress, download.eclipse.sdk.zip"
+    unless="already.eclipse.sdk.uncompressed"
+    if="eclipse.sdk.zip">
+    <mkdir dir="${download.dir}/${uncompress.eclipse.sdk.dir}" />
+    <unzip
+      src="${download.dir}/${eclipse.sdk.zip}"
+      dest="${download.dir}/${uncompress.eclipse.sdk.dir}" />
+  </target>
+  <target
+    name="uncompress.eclipse.sdk"
+    depends="already.eclipse.sdk.uncompress, untar.eclipse.sdk, unzip.eclipse.sdk"
+    unless="already.eclipse.sdk.uncompressed" />
+
+  <!-- Eclipse emf-sdo-xsd-SDK -->
+  <property
+    name="uncompress.emf-sdo-xsd-SDK.dir"
+    value="${eclipse.emf-sdo-xsd-SDK.name}" />
+  <target name="already.emf-sdo-xsd-SDK.uncompress">
+    <available
+      file="${download.dir}/${uncompress.emf-sdo-xsd-SDK.dir}"
+      type="dir"
+      property="already.emf-sdo-xsd-SDK.uncompressed" />
+  </target>
+  <target
+    name="uncompress.emf-sdo-xsd-SDK"
+    depends="already.emf-sdo-xsd-SDK.uncompress, download.emf-sdo-xsd-SDK"
+    unless="already.emf-sdo-xsd-SDK.uncompressed">
+    <mkdir dir="${download.dir}/${uncompress.emf-sdo-xsd-SDK.dir}" />
+    <unzip
+      src="${download.dir}/${eclipse.emf-sdo-xsd-SDK.name}.zip"
+      dest="${download.dir}/${uncompress.emf-sdo-xsd-SDK.dir}" />
+  </target>
+
+  <!-- Eclipse GEF-SDK -->
+  <property
+    name="uncompress.GEF-SDK.dir"
+    value="${eclipse.GEF-SDK.name}" />
+  <target name="already.GEF-SDK.uncompress">
+    <available
+      file="${download.dir}/${uncompress.GEF-SDK.dir}"
+      type="dir"
+      property="already.GEF-SDK.uncompressed" />
+  </target>
+  <target
+    name="uncompress.GEF-SDK"
+    depends="already.GEF-SDK.uncompress, download.GEF-SDK"
+    unless="already.GEF-SDK.uncompressed">
+    <mkdir dir="${download.dir}/${uncompress.GEF-SDK.dir}" />
+    <unzip
+      src="${download.dir}/${eclipse.GEF-SDK.name}.zip"
+      dest="${download.dir}/${uncompress.GEF-SDK.dir}" />
+  </target>
+
+  <!-- Eclipse dtp-sdk -->
+  <property
+    name="uncompress.dtp-sdk.dir"
+    value="${eclipse.dtp-sdk.name}" />
+  <target name="already.dtp-sdk.uncompress">
+    <available
+      file="${download.dir}/${uncompress.dtp-sdk.dir}"
+      type="dir"
+      property="already.dtp-sdk.uncompressed" />
+  </target>
+  <target
+    name="uncompress.dtp-sdk"
+    depends="already.dtp-sdk.uncompress, download.dtp-sdk"
+    unless="already.dtp-sdk.uncompressed">
+    <mkdir dir="${download.dir}/${uncompress.dtp-sdk.dir}" />
+    <unzip
+      src="${download.dir}/${eclipse.dtp-sdk.name}.zip"
+      dest="${download.dir}/${uncompress.dtp-sdk.dir}" />
+  </target>
+
+  <!-- Eclipse wtp-sdk -->
+  <property
+    name="uncompress.wtp-sdk.dir"
+    value="${eclipse.wtp-sdk.name}" />
+  <target name="already.wtp-sdk.uncompress">
+    <available
+      file="${download.dir}/${uncompress.wtp-sdk.dir}"
+      type="dir"
+      property="already.wtp-sdk.uncompressed" />
+  </target>
+  <target
+    name="uncompress.wtp-sdk"
+    depends="already.wtp-sdk.uncompress, download.wtp-sdk"
+    unless="already.wtp-sdk.uncompressed">
+    <mkdir dir="${download.dir}/${uncompress.wtp-sdk.dir}" />
+    <unzip
+      src="${download.dir}/${eclipse.wtp-sdk.name}.zip"
+      dest="${download.dir}/${uncompress.wtp-sdk.dir}" />
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Install targets                                                        -->
+  <!-- ====================================================================== -->
+  <target
+    name="install.eclipse.sdk"
+    depends="download.eclipse.sdk, uncompress.eclipse.sdk" />
+  <target
+    name="install.eclipse.emf-sdo-xsd-SDK"
+    depends="download.emf-sdo-xsd-SDK, uncompress.emf-sdo-xsd-SDK" />
+  <target
+    name="install.eclipse.GEF-SDK"
+    depends="download.GEF-SDK, uncompress.GEF-SDK" />
+  <target
+    name="install.eclipse.dtp-sdk"
+    depends="download.dtp-sdk, uncompress.dtp-sdk" />
+  <target
+    name="install.eclipse.wtp-sdk"
+    depends="download.wtp-sdk, uncompress.wtp-sdk" />
+
+  <target
+    name="merge.eclipse.products"
+    depends="install.eclipse.sdk, install.eclipse.emf-sdo-xsd-SDK, install.eclipse.GEF-SDK, install.eclipse.dtp-sdk, install.eclipse.wtp-sdk">
+    <mkdir dir="${install.dir}/eclipse" />
+    <move
+      file="${download.dir}/${uncompress.eclipse.sdk.dir}/eclipse"
+      tofile="${install.dir}/eclipse" />
+    <move
+      file="${download.dir}/${uncompress.emf-sdo-xsd-SDK.dir}/eclipse"
+      tofile="${install.dir}/eclipse" />
+    <move
+      file="${download.dir}/${uncompress.GEF-SDK.dir}/eclipse"
+      tofile="${install.dir}/eclipse" />
+    <move
+      file="${download.dir}/${uncompress.dtp-sdk.dir}/eclipse"
+      tofile="${install.dir}/eclipse" />
+    <move
+      file="${download.dir}/${uncompress.wtp-sdk.dir}/eclipse"
+      tofile="${install.dir}/eclipse" />
+
+    <delete dir="${download.dir}/${uncompress.eclipse.sdk.dir}" />
+    <delete dir="${download.dir}/${uncompress.emf-sdo-xsd-SDK.dir}" />
+    <delete dir="${download.dir}/${uncompress.GEF-SDK.dir}" />
+    <delete dir="${download.dir}/${uncompress.dtp-sdk.dir}" />
+    <delete dir="${download.dir}/${uncompress.wtp-sdk.dir}" />
+  </target>
+
+  <target name="already.installed">
+    <available
+      file="${install.dir}/eclipse"
+      type="dir"
+      property="already.eclipse.installed" />
+  </target>
+  <target
+    name="install.all"
+    depends="already.installed"
+    unless="already.eclipse.installed">
+    <antcall target="merge.eclipse.products" />
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- To maven target                                                        -->
+  <!-- ====================================================================== -->
+  <target
+    name="already.maven.repo.installed"
+    description="Verify if some artifacts have been already deployed">
+    <condition property="already.maven.installed">
+      <and>
+        <available
+          file="${user.home}/.m2/repository/org/eclipse"
+          type="dir" />
+
+        <available
+          file="${user.home}/.m2/repository/org/eclipse/core/runtime/3.3.100/runtime-3.3.100.jar"
+          type="file" />
+        <available
+          file="${user.home}/.m2/repository/org/eclipse/ui/3.3.1/ui-3.3.1.jar"
+          type="file" />
+
+        <available
+          file="${user.home}/.m2/repository/org/eclipse/wst/sse/core/1.1.203/core-1.1.203.jar"
+          type="file" />
+        <available
+          file="${user.home}/.m2/repository/org/eclipse/wst/sse/ui/1.0.305/ui-1.0.305.jar"
+          type="file" />
+      </and>
+    </condition>
+  </target>
+  <target
+    name="eclipse.to.maven"
+    depends="already.maven.repo.installed"
+    unless="already.maven.installed">
+    <condition
+      property="maven.executable"
+      value="mvn.bat">
+      <os family="windows" />
+    </condition>
+    <property
+      name="maven.executable"
+      value="mvn.sh" />
+
+    <exec
+      failonerror="true"
+      executable="${env.M2_HOME}\bin\${maven.executable}">
+      <arg line="validate -f install-eclipse-repo.xml -N -Dinstall.dir=${install.dir}" />
+    </exec>
+  </target>
+
+  <!-- ====================================================================== -->
+  <!-- Default target                                                         -->
+  <!-- ====================================================================== -->
+  <target
+    name="default"
+    depends="init.build.properties">
+    <echo>Trying to download and install an Eclipse distribution in ${install.dir}/eclipse</echo>
+    <antcall target="install.all" />
+    <echo>Trying to install the Maven repository from the Eclipse distribution</echo>
+    <antcall target="eclipse.to.maven" />
+  </target>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/download-eclipse.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>features</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.features</groupId>
+  <artifactId>default-feature</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Common Feature</name>
+  <description>Eclipse IDE - Common Feature</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature</url>
+  </scm>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.feature_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/org.apache.maven.doxia.ide.eclipse.feature/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>eclipse</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide</groupId>
+  <artifactId>features</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Doxia Tools :: Eclipse IDE - Parent Features POM</name>
+  <description>Eclipse IDE - Parent Features POM</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features</url>
+  </scm>
+
+  <modules>
+    <module>org.apache.maven.doxia.ide.eclipse.feature</module>
+  </modules>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}</directory>
+        <includes>
+          <include>feature.xml</include>
+        </includes>
+      </resource>
+    </resources>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-eclipse-plugin</artifactId>
+        <configuration>
+          <projectnatures>
+            <projectnature>org.eclipse.pde.FeatureNature</projectnature>
+          </projectnatures>
+          <buildcommands>
+            <buildcommand>org.eclipse.pde.FeatureBuilder</buildcommand>
+          </buildcommands>
+        </configuration>
+      </plugin>
+      <!-- No tests to run -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/features/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,63 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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>
+
+  <groupId>org.apache.maven.doxia.ide</groupId>
+  <artifactId>eclipse-to-maven</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Doxia Tools :: Install Eclipse Artifacts</name>
+  <description>POM which installs Eclipse Artifacts from an Eclipse distribution</description>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-eclipse-plugin</artifactId>
+          <version>2.5.1</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-eclipse-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <configuration>
+              <!-- MNG-3518 workaround -->
+              <stripQualifier>true</stripQualifier>
+              <eclipseDir>${install.dir}/eclipse</eclipseDir>
+            </configuration>
+            <goals>
+              <goal>to-maven</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/install-eclipse-repo.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>apt-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - APT UI Plugin</name>
+  <description>Eclipse IDE - APT UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.apt.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.apt.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,220 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>common-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Common UI Plugin</name>
+  <description>Eclipse IDE - Common UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Eclipse dependencies as defined in plugin.xml -->
+    <dependency>
+      <groupId>org.eclipse.core</groupId>
+      <artifactId>resources</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.core</groupId>
+      <artifactId>runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse</groupId>
+      <artifactId>ui</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.ui</groupId>
+      <artifactId>editors</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.ui</groupId>
+      <artifactId>ide</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jface</groupId>
+      <artifactId>text</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.eclipse.wst.sse</groupId>
+      <artifactId>core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.wst.sse</groupId>
+      <artifactId>ui</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.wst.xml</groupId>
+      <artifactId>core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.wst.xml</groupId>
+      <artifactId>ui</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.wst.common</groupId>
+      <artifactId>ui</artifactId>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.common.ui_${project.version}</finalName>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-dependency-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>copy-compile</id>
+            <phase>compile</phase>
+            <goals>
+              <goal>copy</goal>
+            </goals>
+            <configuration>
+              <artifactItems>
+                <artifactItem>
+                  <groupId>org.apache.maven.doxia</groupId>
+                  <artifactId>doxia-converter</artifactId>
+                  <version>1.0-SNAPSHOT</version>
+                  <classifier>jar-with-dependencies</classifier>
+                  <type>jar</type>
+                </artifactItem>
+              </artifactItems>
+              <outputDirectory>${libdir}</outputDirectory>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
+  <!-- Eclipse dependencies OS specific -->
+  <profiles>
+    <profile>
+      <id>linux-x86</id>
+      <activation>
+        <os>
+          <arch>i386</arch>
+          <family>unix</family>
+          <name>linux</name>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.gtk.linux</groupId>
+          <artifactId>x86</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>linux-x86_64</id>
+      <activation>
+        <os>
+          <arch>amd64</arch>
+          <family>unix</family>
+          <name>linux</name>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.gtk.linux</groupId>
+          <artifactId>x86_64</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>solaris-sparc</id>
+      <activation>
+        <os>
+          <arch>sparc</arch>
+          <family>unix</family>
+          <name>SunOS</name>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.gtk.solaris</groupId>
+          <artifactId>sparc</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>macosx</id>
+      <activation>
+        <os>
+          <family>unix</family>
+          <name>mac os x</name>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.carbon</groupId>
+          <artifactId>macosx</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>win32</id>
+      <activation>
+        <os>
+          <arch>x86</arch>
+          <family>windows</family>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.win32.win32</groupId>
+          <artifactId>x86</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+    <profile>
+      <id>win64</id>
+      <activation>
+        <os>
+          <arch>amd64</arch>
+          <family>windows</family>
+        </os>
+      </activation>
+      <dependencies>
+        <dependency>
+          <groupId>org.eclipse.swt.win32.win32</groupId>
+          <artifactId>x86_64</artifactId>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.common.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>confluence-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Confluence UI Plugin</name>
+  <description>Eclipse IDE - Confluence UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.confluence.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.confluence.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>docbook-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Docbook UI Plugin</name>
+  <description>Eclipse IDE - Docbook UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.docbook.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.docbook.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>fml-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Fml UI Plugin</name>
+  <description>Eclipse IDE - Fml UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.fml.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.fml.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>help</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Help Plugin</name>
+  <description>Eclipse IDE - Help Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.help_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.help/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>twiki-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Twiki UI Plugin</name>
+  <description>Eclipse IDE - Twiki UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.twiki.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.twiki.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>xdoc-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Xdoc UI Plugin</name>
+  <description>Eclipse IDE - Xdoc UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.xdoc.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xdoc.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>plugins</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+  <artifactId>xhtml-ui</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Doxia Tools :: Eclipse IDE - Xhtml UI Plugin</name>
+  <description>Eclipse IDE - Xhtml UI Plugin</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia Eclipse Common UI -->
+    <dependency>
+      <groupId>org.apache.maven.doxia.ide.plugins</groupId>
+      <artifactId>common-ui</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+  </dependencies>
+
+  <build>
+    <finalName>org.apache.maven.doxia.ide.eclipse.xhtml.ui_${project.version}</finalName>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/org.apache.maven.doxia.ide.eclipse.xhtml.ui/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia.ide</groupId>
+    <artifactId>eclipse</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide</groupId>
+  <artifactId>plugins</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Doxia Tools :: Eclipse IDE - Parent Plugins POM</name>
+  <description>Eclipse IDE - Parent Plugins POM</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins</url>
+  </scm>
+
+  <dependencies>
+    <!-- Doxia -->
+    <dependency>
+      <groupId>org.apache.maven.doxia</groupId>
+      <artifactId>doxia-converter</artifactId>
+      <classifier>jar-with-dependencies</classifier>
+    </dependency>
+  </dependencies>
+
+  <modules>
+    <module>org.apache.maven.doxia.ide.eclipse.common.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.apt.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.confluence.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.twiki.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.docbook.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.fml.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.xdoc.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.xhtml.ui</module>
+    <module>org.apache.maven.doxia.ide.eclipse.help</module>
+  </modules>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}</directory>
+        <includes>
+          <include>plugin.xml</include>
+          <include>plugin.properties</include>
+        </includes>
+      </resource>
+      <!-- TODO move icons to resources -->
+      <resource>
+        <directory>icons/</directory>
+        <targetPath>icons</targetPath>
+      </resource>
+      <resource>
+        <directory>src/main/resources</directory>
+      </resource>
+    </resources>
+
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+      </plugin>
+    </plugins>
+
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <configuration>
+            <archive>
+              <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+            </archive>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <extensions>true</extensions>
+          <configuration>
+            <manifestLocation>${manifestdir}</manifestLocation>
+            <instructions>
+              <Embed-Dependency>*;scope=compile|runtime;inline=true</Embed-Dependency>
+              <Embed-Transitive>false</Embed-Transitive>
+            </instructions>
+          </configuration>
+          <executions>
+            <execution>
+              <phase>process-classes</phase>
+              <goals>
+                <goal>manifest</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-eclipse-plugin</artifactId>
+          <configuration>
+            <pde>true</pde>
+            <projectnatures>
+              <projectnature>org.eclipse.pde.PluginNature</projectnature>
+              <projectnature>org.eclipse.jdt.core.javanature</projectnature>
+            </projectnatures>
+            <classpathContainers>
+              <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
+              <classpathContainer>org.eclipse.pde.core.requiredPlugins</classpathContainer>
+            </classpathContainers>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+  </build>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/plugins/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml
URL: http://svn.apache.org/viewvc/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml?rev=650510&view=auto
==============================================================================
--- maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml (added)
+++ maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml Tue Apr 22 06:14:13 2008
@@ -0,0 +1,336 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.maven.doxia</groupId>
+    <artifactId>doxia-tools</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+
+  <groupId>org.apache.maven.doxia.ide</groupId>
+  <artifactId>eclipse</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>Doxia Tools :: Eclipse IDE - Parent POM</name>
+  <description>Parent POM for the defacto IDE for Doxia development</description>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/maven/doxia/doxia-tools/trunk/doxia-ide/eclipse</url>
+  </scm>
+
+  <prerequisites>
+    <maven>2.0.9</maven>
+  </prerequisites>
+
+  <properties>
+    <libdir>${project.build.outputDirectory}/lib</libdir>
+    <manifestdir>${project.build.outputDirectory}/META-INF</manifestdir>
+  </properties>
+
+  <dependencyManagement>
+    <dependencies>
+      <!-- Doxia -->
+      <dependency>
+        <groupId>org.apache.maven.doxia</groupId>
+        <artifactId>doxia-converter</artifactId>
+        <version>1.0-SNAPSHOT</version>
+        <classifier>jar-with-dependencies</classifier>
+      </dependency>
+
+      <!-- Eclipse SDK: see MNG-3518 -->
+      <dependency>
+        <groupId>org.eclipse.core</groupId>
+        <artifactId>resources</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.core</groupId>
+        <artifactId>runtime</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse</groupId>
+        <artifactId>ui</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.ui</groupId>
+        <artifactId>editors</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.ui</groupId>
+        <artifactId>ide</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.jface</groupId>
+        <artifactId>text</artifactId>
+        <version>[3.2.0,4.0.0)</version>
+      </dependency>
+
+      <!-- Eclipse WTP: see MNG-3518 -->
+      <dependency>
+        <groupId>org.eclipse.wst.sse</groupId>
+        <artifactId>core</artifactId>
+        <version>[1.1.0,1.2.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.wst.sse</groupId>
+        <artifactId>ui</artifactId>
+        <version>[1.0.0,1.2.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.wst.xml</groupId>
+        <artifactId>core</artifactId>
+        <version>[1.0.0,1.2.0)</version>
+        <exclusions>
+          <exclusion>
+            <groupId>org.apache</groupId>
+            <artifactId>xerces</artifactId>
+          </exclusion>
+        </exclusions>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.wst.xml</groupId>
+        <artifactId>ui</artifactId>
+        <version>[1.0.0,1.2.0)</version>
+      </dependency>
+      <dependency>
+        <groupId>org.eclipse.wst.common</groupId>
+        <artifactId>ui</artifactId>
+        <version>[1.1.0,1.2.0)</version>
+      </dependency>
+
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-clean-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>2.0.2</version>
+          <configuration>
+            <source>1.5</source>
+            <target>1.5</target>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>2.2</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-dependency-plugin</artifactId>
+          <version>2.0</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-eclipse-plugin</artifactId>
+          <version>2.5.1</version>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.felix</groupId>
+          <artifactId>maven-bundle-plugin</artifactId>
+          <version>1.4.0</version>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+
+    <plugins>
+      <!-- See MNG-3517 -->
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-maven-plugin</artifactId>
+        <version>1.3.8</version>
+      </plugin>
+    </plugins>
+  </build>
+
+  <modules>
+    <module>plugins</module>
+    <module>features</module>
+  </modules>
+
+  <!-- Eclipse dependencyManagement OS specific -->
+  <profiles>
+    <profile>
+      <id>linux-x86</id>
+      <activation>
+        <os>
+          <arch>i386</arch>
+          <family>unix</family>
+          <name>linux</name>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.gtk.linux</groupId>
+            <artifactId>x86</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <id>linux-x86_64</id>
+      <activation>
+        <os>
+          <arch>amd64</arch>
+          <family>unix</family>
+          <name>linux</name>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.gtk.linux</groupId>
+            <artifactId>x86_64</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <id>solaris-sparc</id>
+      <activation>
+        <os>
+          <arch>sparc</arch>
+          <family>unix</family>
+          <name>SunOS</name>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.gtk.solaris</groupId>
+            <artifactId>sparc</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <id>macosx</id>
+      <activation>
+        <os>
+          <family>unix</family>
+          <name>mac os x</name>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.carbon</groupId>
+            <artifactId>macosx</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <id>win32</id>
+      <activation>
+        <os>
+          <arch>x86</arch>
+          <family>windows</family>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.win32.win32</groupId>
+            <artifactId>x86</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <id>win64</id>
+      <activation>
+        <os>
+          <arch>amd64</arch>
+          <family>windows</family>
+        </os>
+      </activation>
+      <dependencyManagement>
+        <dependencies>
+          <dependency>
+            <groupId>org.eclipse.swt.win32.win32</groupId>
+            <artifactId>x86_64</artifactId>
+            <version>[3.2.0,4.0.0)</version>
+          </dependency>
+        </dependencies>
+      </dependencyManagement>
+    </profile>
+    <profile>
+      <!-- MNG-3518 workaround -->
+      <id>download-eclipse</id>
+      <activation>
+        <file>
+          <!-- Be sure that eclipse:to-maven was already called with stripQualifier option -->
+          <missing>${user.home}/.m2/repository/org/eclipse/wst/sse/core/1.1.203/core-1.1.203.jar</missing>
+        </file>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <configuration>
+                  <tasks>
+                    <subant target="">
+                      <property name="download.dir" value="${java.io.tmpdir}"/>
+                      <property name="install.dir" value="${java.io.tmpdir}"/>
+                      <fileset dir="${basedir}" includes="download-eclipse.xml"/>
+                    </subant>
+                  </tasks>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/doxia/doxia-tools/trunk/doxia-ide/eclipse/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision