Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Remove "thanks", hyperlink documentation, edit tags
Source Link

How do I add a "maven dependency"Maven dependency in eclipseEclipse?

I don't know how to use mavenMaven at all. I've been developing for a couple years with Eclipse and haven't yet needed to know about it. However, now I'm looking at some docs (http://docs.jboss.org/resteasy/docs/1.1.GA/userguide/html/json.htmllooking at some docs) that suggest I do the following:

"To include it within your project, just add this maven dependency to your build."

<repository> <id>jboss</id> <url>http://repository.jboss.org/maven2</url> </repository> ... <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson-provider</artifactId> <version>1.1.GA</version> </dependency> 

How do I do this with my eclipseEclipse project?

Please assume I know nothing about mavenMaven. I just figured out it might be installed on my computer by typing mvn on the command line, but that's seriously the extent of my knowledge. I would be happy to continue knowing nothing about mavenMaven if there is an equivalent, non-mavenMaven way of following these instructions with eclipseEclipse.

Thanks!

How do I add a "maven dependency" in eclipse?

I don't know how to use maven at all. I've been developing for a couple years with Eclipse and haven't yet needed to know about it. However, now I'm looking at some docs (http://docs.jboss.org/resteasy/docs/1.1.GA/userguide/html/json.html) that suggest I do the following:

"To include it within your project, just add this maven dependency to your build."

<repository> <id>jboss</id> <url>http://repository.jboss.org/maven2</url> </repository> ... <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson-provider</artifactId> <version>1.1.GA</version> </dependency> 

How do I do this with my eclipse project?

Please assume I know nothing about maven. I just figured out it might be installed on my computer by typing mvn on the command line, but that's seriously the extent of my knowledge. I would be happy to continue knowing nothing about maven if there is an equivalent, non-maven way of following these instructions with eclipse.

Thanks!

How do I add a Maven dependency in Eclipse?

I don't know how to use Maven at all. I've been developing for a couple years with Eclipse and haven't yet needed to know about it. However, now I'm looking at some docs that suggest I do the following:

"To include it within your project, just add this maven dependency to your build."

<repository> <id>jboss</id> <url>http://repository.jboss.org/maven2</url> </repository> ... <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson-provider</artifactId> <version>1.1.GA</version> </dependency> 

How do I do this with my Eclipse project?

Please assume I know nothing about Maven. I just figured out it might be installed on my computer by typing mvn on the command line, but that's seriously the extent of my knowledge. I would be happy to continue knowing nothing about Maven if there is an equivalent, non-Maven way of following these instructions with Eclipse.

Source Link
Riley Lark
  • 20.9k
  • 15
  • 86
  • 130

How do I add a "maven dependency" in eclipse?

I don't know how to use maven at all. I've been developing for a couple years with Eclipse and haven't yet needed to know about it. However, now I'm looking at some docs (http://docs.jboss.org/resteasy/docs/1.1.GA/userguide/html/json.html) that suggest I do the following:

"To include it within your project, just add this maven dependency to your build."

<repository> <id>jboss</id> <url>http://repository.jboss.org/maven2</url> </repository> ... <dependency> <groupId>org.jboss.resteasy</groupId> <artifactId>resteasy-jackson-provider</artifactId> <version>1.1.GA</version> </dependency> 

How do I do this with my eclipse project?

Please assume I know nothing about maven. I just figured out it might be installed on my computer by typing mvn on the command line, but that's seriously the extent of my knowledge. I would be happy to continue knowing nothing about maven if there is an equivalent, non-maven way of following these instructions with eclipse.

Thanks!