Author: bimargulies Date: Mon Aug 29 01:46:09 2011 New Revision: 1162630 URL: http://svn.apache.org/viewvc?rev=1162630&view=rev Log: check in a temporary p2 repo containing the doxia stuff to allow the IDE build to proceed.
Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/artifacts.jar (with props) maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/content.jar (with props) maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/features/ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/features/org.apache.maven.doxia.ide.dependencies.temp.feature_1.0.0.201108281729.jar (with props) Modified: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/p2-repository/p2/pom.xml Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/artifacts.jar URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/artifacts.jar?rev=1162630&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/artifacts.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/content.jar URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/content.jar?rev=1162630&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/content.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Added: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/features/org.apache.maven.doxia.ide.dependencies.temp.feature_1.0.0.201108281729.jar URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/features/org.apache.maven.doxia.ide.dependencies.temp.feature_1.0.0.201108281729.jar?rev=1162630&view=auto ============================================================================== Binary file - no diff available. Propchange: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/interim-p2/features/org.apache.maven.doxia.ide.dependencies.temp.feature_1.0.0.201108281729.jar ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream Modified: maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/p2-repository/p2/pom.xml URL: http://svn.apache.org/viewvc/maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/p2-repository/p2/pom.xml?rev=1162630&r1=1162629&r2=1162630&view=diff ============================================================================== --- maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/p2-repository/p2/pom.xml (original) +++ maven/sandbox/branches/doxia-ide-eclipse-with-tycho/doxia-osgi/p2-repository/p2/pom.xml Mon Aug 29 01:46:09 2011 @@ -29,10 +29,36 @@ under the License. <name>Doxia Tools :: Eclipse IDE - P2 Repository containing dependency bundle</name> <description>Put the bundle with the dependencies into a P2 repository</description> <dependencies> - <dependency> - <groupId>org.apache.maven.doxia.ide</groupId> - <artifactId>dependencies</artifactId> - <version>1.0.0-SNAPSHOT</version> - </dependency> + <dependency> + <groupId>org.apache.maven.doxia.ide</groupId> + <artifactId>dependencies</artifactId> + <version>1.0.0-SNAPSHOT</version> + </dependency> </dependencies> + <properties> + <p2.target>${settings.localRepository}/doxia-p2</p2.target> + </properties> + <build> + <plugins> + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.6</version> + <executions> + <execution> + <phase>install</phase> + <configuration> + <target> + <copy todir="${p2.target}"> + <fileset dir="target/repository"/> + </copy> + </target> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> </project>