Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1111f39f96d20ad54bff057db86b6bb887fe79bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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