h*********e 发帖数: 247 2
I found the reason
the pom.xml had :
org.eclipse.jetty
jetty-server
${jettyVersion}
org.mortbay.jetty
jetty-maven-plugin
${jettyVersion}
/guoguoHello
... 阅读全帖
c*****t 发帖数: 1879 3
最近想写个 OSS 软件,打算用 maven 。但是这个 project dependency
搞不定。
parent pom.xml 是
com.coconut
myProject
0.0.1
pom
myProject
http://maven.apache.org
...
subProject
child pom.xml 是
com.coconut
myProject
<... 阅读全帖
T*******x 发帖数: 8565 4
谢谢。
我在maven local repository (.m2)里找到了spring-context所在的目录,
里面主要有两个文件,一个是spring-context.jar,另一个是spring-context.pom。
jar里面没有dependency信息,这些信息是在pom文件里。
也就是说,maven central repository网站,
对每一个jar文件都整理了一个pom文件,其中存贮它的dependency。
所以maven解决类库conflict最终是靠central repository网站维护。
对吧?
maven我一直没搞明白,觉得很confuse。
比如这个spring-context类库,我如果不用eclipse工具看的话,
根本不知道它depend on spring-beans类库。
在这种情况下我会把两个都写在我的pom.xml里。
比如这样(请注意这两个版本不一样):
spring-context
3.1.1
阅读全帖
q***s 发帖数: 2243 6
Add this into you pom.xml maybe help to fix your problem.
org.apache.maven.plugins
maven-compiler-plugin
2.3.2
1.6
1.6
UTF-8
also you need right click on project and then maven->update maven configure
in ... 阅读全帖
r*****l 发帖数: 2859 7
As I mentioned before: "As I mentioned before: "这些demo有些时候不是很严谨的
。你只可当做参考".
However, if you use this, it should work with Jetty version 7.2.0.v20101020.
org.mortbay.jetty
jetty-maven-plugin
${jettyVersion}
/hello-world
h**k 发帖数: 662 8
问一个简单的问题,可我也没找到答案
比如我upload一个jar到 internal repo,
同时upload pom
org.apache.poi
poi
3.8-beta5
This artifact depends on ...
commons-codec
commons-logging
log4j
这个jar自己有三个dependency,我要不要在这里也写出来? 还是这个pom 就可以了。
当然我会单独另外再upload另外三个。
谢谢
d****i 发帖数: 4809 9
你用Eclipse的话可以装m2e插件,这样maven就自动和eclipse集成了。然后加入Spring
的dependency:
org.springframework
spring-context
xx.xx.xx.RELEASE
x****d 发帖数: 1766 11
try this... or change version to 2.2.5
objectdb
ObjectDB Repository
http://m2.objectdb.com
com.objectdb
objectdb
2.2.5
T*******x 发帖数: 8565 13
举个例子吧。比如我的pom.xml里面有这么一个dependency:
org.springframework
spring-context
3.1.1.RELEASE
用eclipse看dependency hierarchy,发现它depend on
spring-aop
spring-beans
spring-core
spring-expression
spring-asm
这些都不在我的pom.xml里面。那么这些dependency information
是在哪里存贮的?是在maven central repository网站存储维护的吗?
d****n 发帖数: 1637 14
server code 能改动的话用这个 resteasy annotation
org.jboss.resteasy
resteasy-jaxrs
${version.resteasy}
import javax.ejb.Local;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
@Local
@GET // HTTP GET method
@Path("/Test1") // path of the service
public String test1(@QueryParam("username") String username);
o**2 发帖数: 168 16
这个在我的TODO list上都好几个月了,你不提,还真说不定要再过几个月才想得起来
。刚在 sonatype.org 上开了帐号和ticket,要等等。他们说:Normally it takes
less than 2 business days.
不过group id什么的现在可以定好了:
groupId: com.fastmessenger
artifactId: fmp-ref-impl
version: 2.0.0