Maven:如何将本地jar打包到最终jar中?

时间:2018-08-16 12:33:22

标签: java eclipse maven maven-2 m2eclipse

我有一个eclipse-maven项目。
我需要将本地ojdbc7.jar包装到最终的jar中。
我能够将可下载的依赖项打包到最终jar中,但是由于在其<scope>system</scope>中添加了<dependency>,因此无法将本地jar打包到最终jar中。
这是POM.xml:

<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>
  <groupId>com.comcast.mongo</groupId>
  <artifactId>MongoRead</artifactId>
  <version>0.1</version>

    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>

        <dependency>
            <groupId>org.apache.spark</groupId>
            <artifactId>spark-core_2.11</artifactId>
            <version>2.2.0</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
             <groupId>org.apache.spark</groupId>
             <artifactId>spark-sql_2.11</artifactId>
             <version>2.2.0</version>
         </dependency>

        <dependency>
            <groupId>org.scala-lang</groupId>
            <artifactId>scala-library</artifactId>
            <version>2.11.8</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.mongodb.spark</groupId>
            <artifactId>mongo-spark-connector_2.11</artifactId>
            <version>2.2.0</version>
        </dependency>
        <dependency>
            <groupId>org.mongodb</groupId>
            <artifactId>bson</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc</artifactId>
            <version>7</version>
            <scope>system</scope>
            <systemPath>${basedir}/ojdbc-7.jar</systemPath>
        </dependency>
        <dependency>
            <groupId>org.clojure</groupId>
            <artifactId>java.jdbc</artifactId>
            <version>0.7.0</version>
        </dependency>

    </dependencies>


    <build>
    <plugins>
      <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.2.1</version>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
            </configuration>
            <executions>
                <execution>
                    <id>make-assembly</id> 
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
  </build>

</project>

我已经为不需要安装在最终jar中的那些依赖项提供了<scope>provided</scope>。但是因为需要为<scope>system</scope>设置<systemPath>,所以我无法将此本地jar打包到最终jar中。
请建议我该怎么做?

1 个答案:

答案 0 :(得分:2)

您可以将ojdbc库安装到您的maven存储库中,然后它将与其他库一样工作。

假设您在jar的相同位置启动此命令:

mvn install:install-file -Dfile=ojdbc-7.jar -Dpackaging=jar -DgroupId=com.oracle -DartifactId=ojdbc -Dversion=7

在您的POM中,更新为:

<dependency>
        <groupId>com.oracle</groupId>
        <artifactId>ojdbc</artifactId>
        <version>7</version>
    </dependency>