web-dev-qa-db-ja.com

dependencies.dependency.version 'にエラーがありません

Apache mavenを使用してバンドルを作成しようとしています。 mvn clean installコマンドを実行すると、次のエラーが表示されます。

javax.servlet:servlet-api.jarには、dependencies.dependency.version 'があ​​りません

プロジェクトのリソースフォルダ内に「servlet-api.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/maven-v4_0_0.xsd">

 <parent>
   <artifactId>felix-parent</artifactId>
   <groupId>org.Apache.felix</groupId>
   <version>2.1</version>
   <relativePath>../pom/pom.xml</relativePath>
 </parent>

 <modelVersion>4.0.0</modelVersion>

 <artifactId>maven-bundle-plugin</artifactId>
 <version>2.4.1-SNAPSHOT</version>
 <packaging>maven-plugin</packaging>

 <name>Maven Bundle Plugin</name>
 <description>
  Provides a maven plugin that supports creating an OSGi bundle
  from the contents of the compilation classpath along with its
  resources and dependencies. Plus a zillion other features.
  The plugin uses the Bnd tool (http://www.aqute.biz/Code/Bnd)
 </description>

 <scm>
  <connection>scm:svn:http://svn.Apache.org/repos/asf/felix/trunk/bundleplugin</connection>
  <developerConnection>scm:svn:https://svn.Apache.org/repos/asf/felix/trunk/bundleplugin</developerConnection>
  <url>http://svn.Apache.org/repos/asf/felix/trunk/bundleplugin</url>
 </scm>

 <build>
  <plugins>
   <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
     <source>1.5</source>
     <target>1.5</target>
    </configuration>
   </plugin>
  </plugins>
 </build>

 <dependencies>
        <!-- Provided APIs -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
        </dependency>

    </dependencies>

 <reporting>
  <plugins>
   <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-plugin-plugin</artifactId>
    <version>3.2</version>
   </plugin>
   <plugin>
    <groupId>org.Apache.maven.plugins</groupId>
    <artifactId>maven-changes-plugin</artifactId>
    <version>2.9</version>
    <configuration>
     <component>12311143</component>
     <versionPrefix>maven-bundle-plugin-</versionPrefix>
     <statusIds>Resolved,Closed</statusIds>
     <maxEntries>1000</maxEntries>
     <issueManagementSystems>
      <issueManagementSystem>JIRA</issueManagementSystem>
     </issueManagementSystems>
     <useJql>true</useJql>
    </configuration>
   </plugin>
  </plugins>
 </reporting>

</project>

ありがとうアンダーソン

19
Anderson

versiondependencyタグを追加していません。

<dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>
        <version>1.0.0</version>   //Add the version.
</dependency>
18
Rahul Bobhate

わずかに異なる理由でこの同じエラーが発生しました。

私のプロジェクトは依存関係管理を使用しています(2 <dependencyManagement>何らかの理由でセクション)と多くのモジュールとサブモジュールがあります。

トップレベル pomには次が含まれていました:

    <dependencyManagement>
        <dependency>
            <groupId>org.Apache.spark</groupId>
            <artifactId>spark-core_2.10</artifactId>
            <version>${spark.version}</version>
        </dependency>
    </dependencyManagement>

サブレベル pom had

    <dependencyManagement>
        <dependency>
            <groupId>org.Apache.spark</groupId>
            <artifactId>spark-core_2.10</artifactId>
            <scope>provided</scope>
        </dependency>
    </dependencyManagement>

葉のポン持っていた

    <dependency>
        <groupId>org.Apache.spark</groupId>
        <artifactId>spark-core_2.10</artifactId>
    </dependency>

修正するには、<dependencyManagement>中間レベルのPOMからのセクション、およびleaf pom

    <dependency>
        <groupId>org.Apache.spark</groupId>
        <artifactId>spark-core_2.10</artifactId>
        <scope>provided</scope>
    </dependency>
3
Harry Lime

メッセージは非常に明確です。pomのdependencies要素内には、アーティファクトjavax.servlet:servlet-api.jarを持つdependency要素があります。そして、このdependency要素の中には、バージョン要素がなければなりませんが、あなたはそれを提供しませんでした。

<dependencies>
    <!-- Provided APIs -->
    <dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>servlet-api</artifactId>

        <!-- missing version here: -->
        <version>3.0</version>
    </dependency>
</dependencies>

3.0は単なる例であることに注意してください。適切なバージョンを提供してください。

1
JB Nizet

私の場合、私は単一のポンポンを持ち、同じ問題に直面していました。上記のハリーの答えからヒントを得て、dependencymanagementセクションを追加し、問題を解決しました。

0
Prashant C