Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Fedorenko2011-05-05 03:03:56 +0000
committerIgor Fedorenko2011-05-05 03:03:56 +0000
commit241a8b903bba7f30e9ad961b809d184e177f2867 (patch)
treefc4423d649ce5ea589062cbb1f9dcc464c7af2cc /org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml
parent12c4b882a72267fe9788e02fdd202a58c250342c (diff)
downloadm2e-core-241a8b903bba7f30e9ad961b809d184e177f2867.tar.gz
m2e-core-241a8b903bba7f30e9ad961b809d184e177f2867.tar.xz
m2e-core-241a8b903bba7f30e9ad961b809d184e177f2867.zip
moved maven runtime to separate source tree
mostly working implementation Signed-off-by: Igor Fedorenko <igor@ifedorenko.com>
Diffstat (limited to 'org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml')
-rw-r--r--org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml111
1 files changed, 0 insertions, 111 deletions
diff --git a/org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml b/org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml
deleted file mode 100644
index 1111f39f..00000000
--- a/org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Copyright (c) 2008 Sonatype, Inc.
- All rights reserved. This program and the accompanying materials
- are made available under the terms of the Eclipse Public License v1.0
- which accompanies this distribution, and is available at
- http://www.eclipse.org/legal/epl-v10.html
--->
-<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/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
-
- <!--
- To include new embedded runtime,
-
- * update <maven.version/> and related properties
- * run the command below from CLI
- * add ``local-patches.jar'' (without quotes) at the beginning of Bundle-ClassPath manifest attribute
- * add ``Require-Bundle: com.ning.async-http-client;bundle-version="1.6.0"'' (without quotes) to the manifest
- * right-click on the project in Eclipse, PDE->Update Classpath
- * project->clean...->all
-
- rm -f jars/*; /opt/maven/bin/mvn -e -f update-jars-pom.xml process-classes
- -->
-
- <properties>
- <sisu.version>2.0.0</sisu.version>
- <classworlds.version>2.4</classworlds.version>
- <sisu-guice.version>2.9.4</sisu-guice.version>
- </properties>
-
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>org.eclipse.m2e.maven.runtime</artifactId>
- <version>0.13.0-SNAPSHOT</version>
-
- <dependencies>
- <dependency>
- <groupId>org.sonatype.sisu.inject</groupId>
- <artifactId>guice-plexus-shim</artifactId>
- <version>${sisu.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.sonatype.sisu</groupId>
- <artifactId>sisu-guice</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
-
- <dependency>
- <groupId>org.sonatype.sisu</groupId>
- <artifactId>sisu-guice</artifactId>
- <version>${sisu-guice.version}</version>
- <classifier>no_aop</classifier>
- </dependency>
- </dependencies>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-classworlds</artifactId>
- <version>${classworlds.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>tycho-packaging-plugin</artifactId>
- <version>0.12.0</version>
- <executions>
- <execution>
- <phase>process-classes</phase>
- <goals>
- <goal>generate-bundle</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <packageSources>false</packageSources>
- <exportPackages>
- com.google.inject.*,
- org.sonatype.*,
- org.codehaus.*,
- javax.*,
- </exportPackages>
- <manifestAttributes>
- <Bundle-RequiredExecutionEnvironment>J2SE-1.5, JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
- </manifestAttributes>
-
- <exclusions>
- <exclusion>
- <groupId>aopalliance</groupId>
- <artifactId>aopalliance</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.sonatype.sisu</groupId>
- <artifactId>sisu-guice</artifactId>
- </exclusion>
- <exclusion>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-utils</artifactId>
- </exclusion>
- </exclusions>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>

Back to the top