如何在不使用maven的情况下创建jar时排除某些Jar依赖项?

时间:2015-08-11 12:50:28

标签: maven apache-storm

我正在开发一个核心Java项目。我正在编写Apache Storm拓扑,并且需要在将拓扑绑定到jar时排除风暴jar。有没有办法在不使用maven的情况下这样做?我知道maven我们可以使用<scope>provided</scope>但我需要替代它。

PS:我正在使用Eclipse。

2 个答案:

答案 0 :(得分:1)

我使用Gradle来编译拓扑的JAR文件。它允许您在生成JAR文件时排除某些文件。

下面的示例显示了我在build.gradle文件中使用的设置

   apply plugin: 'java'
    apply plugin: 'eclipse'


    configurations {
        provided
        compile.extendsFrom provided
    }

    jar {
        dependsOn configurations.runtime

        from {
            (configurations.runtime - configurations.provided).collect {
                it.isDirectory() ? it : zipTree(it)
            }
        }

        manifest {
            attributes 'Main-Class': 'com.example.myclass'
        }
    }

    dependencies {
        provided files('./lib/asm-4.0.jar')
        provided files('./lib/carbonite-1.4.0.jar')
        # ... The rest of the Storm jars found in the lib directory of your storm installation
    }

默认情况下,Gradle期望的目录结构是

MyProjectName
    - build.gradle
    - src
       - main
            - java
                - [Your Java Files]
            - resources
                - resources
                    - [Mutlilang files / other resources]

在包含build.gradle文件的目录中运行 gradle build 时从命令行生成一个JAR文件,应该在。\ build \ libs

下生成

还有Gradle plugin for eclipse

答案 1 :(得分:0)

如果你使用的是Maven而不是Gradle,并且你来这里排除了建筑物中的风暴lib,我有解决方案和一个有效的例子。

documentation of Storm告诉我们排除Storm依赖关系并提供a link to a page of Maven,它解释了如何做到这一点,但它缺少一个完整的例子。事实证明,我们必须创建另一个XML文件作为程序集配置的描述符,而不是直接将配置放在pom.xml中,即使Eclipse没有抱怨将这两个文件放在一起。

以下是:

我们有pom.xmlassembly个插件,指向另一个描述符xml文件:

<plugin>                                                                                
    <artifactId>maven-assembly-plugin</artifactId>                                      
    <executions>                                                                        
        <execution>                                                                     
            <id>make-assembly</id> <!-- this is used for inheritance merges -->         
            <phase>package</phase> <!-- bind to the packaging phase -->                 
            <goals>                                                                     
                <goal>single</goal>                                                     
            </goals>                                                                    
        </execution>                                                                    
    </executions>                                                                       
    <configuration>                                                                     
        <descriptors>                                                                   
            <descriptor>/src/main/resources/exclude-storm.xml</descriptor>              
        </descriptors>                                                                  
        <archive>                                                                       
            <manifest>                                                                  
                <mainClass>path.to.main.class</mainClass> 
            </manifest>                                                                 
        </archive>                                                                      
        <descriptorRefs>                                                                
            <descriptorRef>jar-with-dependencies</descriptorRef>                        
        </descriptorRefs>                                                               
    </configuration>                                                                    
</plugin>     

注意部分:(应该是完整路径)

<descriptors>                                                                   
    <descriptor>/src/main/resources/exclude-storm.xml</descriptor>              
</descriptors>

在这条道路上:

<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.0.0 http://maven.apache.org/xsd/assembly-2.0.0.xsd">
    <id>exclude-storm</id>
    <formats>
        <format>jar</format>
    </formats>
    <includeBaseDirectory>false</includeBaseDirectory>
    <dependencySets>
        <dependencySet>
            <outputDirectory>/</outputDirectory>
            <useProjectArtifact>false</useProjectArtifact>
            <unpack>true</unpack>
            <scope>compile</scope>   <!-- note here!!!! -->
            <excludes>
                <exclude>org.apache.storm:storm-core:jar:1.1.1</exclude>
            </excludes>
        </dependencySet>
    </dependencySets>
    <fileSets>
        <fileSet>
            <outputDirectory>/</outputDirectory>
            <directory>${project.build.outputDirectory}</directory>
        </fileSet>
    </fileSets>
</assembly>

这里我们添加了Maven doc页面的设置。

最重要的事情:排除格式:应该是:(ref

groupId:artifactId:type[:classifier]:version

范围! runtime是默认值,我将其更改为compile并且有效。

最后,在编译时,使用:

clean assembly:assembly

打开调试输出以在控制台中查看完整输出。如果你:

  • 成功构建
  • 搜索输出,但未找到类似:[WARNING]The following patterns were never triggered in this artifact inclusion filter: o 'org.apache.storm:storm-core:jar:1.1.1'.
  • 的内容
  • jar不包含default.yaml

然后你知道你已经成功了。

感谢另一个问题和答案的灵感:How to exclude dependencies from maven assembly plugin : jar-with-dependencies?