java - Add feed4j dependency in pom.xml -


i cannot add dependency in pom.xml feed4j.jar

enter image description here

when select dependency feed4j feed4junit not feed4j.

enter image description here

when add dependency in pom.xml

<dependency>     <groupid>feed4j</groupid>     <artifactid>feed4j</artifactid>     <version>1.0</version> </dependency> 

i error

missing artifact feed4j:feed4j:jar:1.0

as result when try mvn clean install error

package it.sauronsoftware.feed4j not exist

any please.

feed4j not in maven central repository. have several options:

  1. use maven repository has feed4j artifact available. can set own nexus or artifactory.
  2. include jar file in project , use maven system scope (see this question example how use it)
  3. install dependency manually in local maven repository. here short tutorial how that.

Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -