如何从由MAven+BND生成的OSGI包中排除GWT依赖代码



我在根pom.xml文件中有几个与Vaadin库依赖的Maven模块。

我正在尝试使用Maven+BND构建一组OSGI包(每个Maven模块一个)。

我把这个添加到我的"root" pom.xml文件:

    <dependencies>
    <dependency>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin</artifactId>
        <version>6.6.6</version>
    </dependency>
    <dependency>
        <groupId>com.google.gwt</groupId>
        <artifactId>gwt-user</artifactId>
        <version>2.3.0</version>
    </dependency>
    <dependency>
        <groupId>org.apache.felix</groupId>
        <artifactId>org.osgi.core</artifactId>
        <version>1.0.0</version>
    </dependency>
    </dependencies>
不幸的是,生成的JAR文件(包)包含GWT (com.google.gwt)类。这1)使bundle变得巨大,有很多重复的依赖。2)生成了数千个关于"拆分包"的构建警告。

问题:如何防止在Jar文件中添加GWT类?

我尝试将GWT的"scope"设置为"提供",将"type"设置为"bundle",甚至optional=true -没有帮助。

这是我的根pom.xml的一部分,它负责vadin/GWT的东西:

    <plugins>
        <plugin>
            <groupId>org.apache.felix</groupId>
            <artifactId>maven-bundle-plugin</artifactId>
            <version>2.3.5</version>
            <extensions>true</extensions>
            <configuration>
                <instructions>
                    <Export-Package>mycompany.*</Export-Package>
                    <Private-Package>*.impl.*</Private-Package>
                    <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
                    <!--                        <Bundle-Activator>com.alskor.publicpackage.MyActivator</Bundle-Activator>-->
                </instructions>
            </configuration>
        </plugin>
        <!-- Compiles your custom GWT components with the GWT compiler -->
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <!-- Version 2.1.0-1 works at least with Vaadin 6.5 -->
            <version>2.3.0-1</version>
            <configuration>
                <!-- if you don't specify any modules, the plugin will find them -->
                <!--modules>
                    ..
                </modules-->
                <webappDirectory>${project.build.directory}/${project.build.finalName}/VAADIN/widgetsets
                </webappDirectory>
                <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
                <runTarget>clean</runTarget>
                <hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
                <noServer>true</noServer>
                <port>8080</port>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>resources</goal>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <!-- Updates Vaadin 6.2+ widgetset definitions based on project dependencies -->
        <plugin>
            <groupId>com.vaadin</groupId>
            <artifactId>vaadin-maven-plugin</artifactId>
            <version>1.0.1</version>
            <executions>
                <execution>
                    <configuration>
                        <!-- if you don't specify any modules, the plugin will find them -->
                        <!--
                        <modules>
                            <module>${package}.gwt.MyWidgetSet</module>
                        </modules>
                        -->
                    </configuration>
                    <goals>
                        <goal>update-widgetset</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>

Export-Package和Private-Package语句中的通配符让我觉得非常危险。有可能GWT包被拖进来是因为Private-Package中的*.impl.*模式。

你也应该永远不要在Export-Package中使用通配符:导出应该被严格控制和版本化。

  1. 使用mvn dependency:tree查看gwt依赖从哪里来
  2. <excludes/>元素与适当的<exclude/>添加到所讨论的依赖项中以抑制它。

我也遇到过类似的问题,final war文件几乎超过了90MB !其中一个罪魁祸首是前面提到的jar,所以我这样做:

<dependencies>
    <dependency>
        <groupId>${project.groupId}</groupId>
        <artifactId>widgetset</artifactId>
        <version>3.2</version>
        <exclusions>
            <exclusion>
                <groupId>com.vaadin.external.gwt</groupId>
                <artifactId>gwt-user</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    ...
</dependencies>

最新更新