You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by bi...@apache.org on 2011/08/27 18:16:26 UTC

svn commit: r1162392 - in /maven/sandbox/branches/doxia-ide-eclipse-with-tycho: ./ eclipse-plugins/ org.apache.maven.doxia.eclipse.dependencies/ src/ src/site/ src/site/apt/

Author: bimargulies
Date: Sat Aug 27 16:16:25 2011
New Revision: 1162392

URL: http://svn.apache.org/viewvc?rev=1162392&view=rev
Log:
A little doc, plus next step in tree-surgery. svn as usual forces me to check in more often than anyone
really wants to see.

Added:
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml   (with props)
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt   (with props)
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml   (with props)
Modified:
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/README.TXT
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/download-eclipse.xml
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/install-eclipse-repo.xml
    maven/sandbox/branches/doxia-ide-eclipse-with-tycho/org.apache.maven.doxia.eclipse.dependencies/pom.xml

Modified: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/README.TXT
URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/README.TXT?rev=1162392&r1=1162391&r2=1162392&view=diff
==============================================================================
--- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/README.TXT (original)
+++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/README.TXT Sat Aug 27 16:16:25 2011
@@ -1,5 +1,11 @@
 Eclipse plugin for Apache Maven Doxia
 
+Structure:
+
+  org.apache.maven.doxia.eclipse.dependencies bundles: up doxia and dependencies as an OSGi plugin.
+    
+  
+
 Required Prerequisites:
 * Eclipse SDK Platform (http://download.eclipse.org/eclipse/downloads/)
 * Web Tools Platform (http://download.eclipse.org/webtools/downloads/)

Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml?rev=1162392&view=auto
==============================================================================
--- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml (added)
+++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml Sat Aug 27 16:16:25 2011
@@ -0,0 +1,52 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <prerequisites>
+    <maven>3.0.3</maven>
+  </prerequisites>
+  <parent>
+    <groupId>org.apache.maven.doxia.ide</groupId>
+    <artifactId>eclipse</artifactId>
+    <version>1.0-tycho-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>eclipse-plugins</artifactId>
+  <packaging>pom</packaging>
+  <description>The eclipse plugins, features, and update site are here.
+  </description>
+
+  <properties>
+    <tycho-version>0.12.0</tycho-version>
+  </properties>
+
+  <modules>
+  </modules>
+
+  <repositories>
+   <repository>
+     <id>helios</id>
+     <layout>p2</layout>
+     <url>http://download.eclipse.org/releases/helios</url>
+   </repository>
+  </repositories>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>tycho-maven-plugin</artifactId>
+        <version>${tycho-version}</version>
+        <extensions>true</extensions>
+      </plugin>
+      <plugin>
+        <groupId>org.eclipse.tycho</groupId>
+        <artifactId>target-platform-configuration</artifactId>
+        <version>${tycho-version}</version>
+        <configuration>
+          <pomDependencies>consider</pomDependencies>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>
\ No newline at end of file

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/eclipse-plugins/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/org.apache.maven.doxia.eclipse.dependencies/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/org.apache.maven.doxia.eclipse.dependencies/pom.xml?rev=1162392&r1=1162391&r2=1162392&view=diff
==============================================================================
--- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/org.apache.maven.doxia.eclipse.dependencies/pom.xml (original)
+++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/org.apache.maven.doxia.eclipse.dependencies/pom.xml Sat Aug 27 16:16:25 2011
@@ -27,7 +27,8 @@ under the License.
     </parent>
     <groupId>org.apache.maven.doxia.ide</groupId>
     <artifactId>dependencies</artifactId>
-    <version>1.0-SNAPSHOT</version>
+    <!-- three-digit version to match up with OSGI methodology -->
+    <version>1.0.0-SNAPSHOT</version>
     <packaging>bundle</packaging>
     <name>Doxia Tools :: Eclipse IDE - Dependencies as Bundle</name>
     <description>Make an OSGi bundle of the required non-OSGi components</description>

Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt?rev=1162392&view=auto
==============================================================================
--- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt (added)
+++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt Sat Aug 27 16:16:25 2011
@@ -0,0 +1,15 @@
+ -----
+ Doxia Eclipse IDE plugins
+ -----
+ Benson Margulies
+ -----
+ 25 August 2011
+ -----
+
+Structure
+
+  [org.apache.maven.doxia.eclipse.dependencies] builds an OSGi bundle with all of the dependencies
+  that are not OSGi in their native form. Due to a Tycho limitation, you have to run mvn install
+  on this before building the <<<eclipse>>> subdirectory.
+
+  [eclipse] contains all of the other material, using Tycho to make eclipse plugins.

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/apt/index.apt
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml?rev=1162392&view=auto
==============================================================================
--- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml (added)
+++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml Sat Aug 27 16:16:25 2011
@@ -0,0 +1,57 @@
+<?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 name="Doxia Eclipse Editors" 
+	 xmlns="http://maven.apache.org/DECORATION/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	 xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd">
+
+  <bannerLeft>
+    <name>Maven</name>
+    <src>images/apache-maven-project-2.png</src>
+    <href>http://maven.apache.org/</href>
+  </bannerLeft>
+  <bannerRight>
+    <name>Doxia</name>
+    <src>images/maven-logo-2.gif</src>
+    <href>http://maven.apache.org/doxia/</href>
+  </bannerRight>
+
+  <body>
+    <head>
+      <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
+      </script>
+      <script type="text/javascript">
+        _uacct = "UA-140879-1";
+        urchinTracker();
+      </script>
+    </head>
+
+    <breadcrumbs>
+      <item name="Doxia" href="http://maven.apache.org/doxia/index.html"/>
+    </breadcrumbs>
+
+    <menu ref="modules"/>
+    <menu ref="reports"/>
+
+  </body>
+</project>

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain