Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
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, 111 insertions, 0 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
new file mode 100644
index 00000000..1111f39f
--- /dev/null
+++ b/org.eclipse.m2e.maven.runtime.sisu/update-jars-pom.xml
@@ -0,0 +1,111 @@
+<?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