如何运行Hippo CMS

时间:2014-01-12 07:57:57

标签: java maven svn hippocms

我有SVN的Hippo CMS源代码。幸运的是它基于maven并且它自动获得所有依赖项。 我已经成功安装了Maven,并且建立了site.war和CMS.war以及另外两个jar文件。

但我不知道如何运行它。文档说使用mvn -P cargo.run运行它。

我已经做到了,一切似乎都没问题,当我尝试浏览localhost:8080/cmslocalhost:8080/site时,没有任何内容出现。

如果我必须做其他事情,有人可以帮忙吗?或者如果我做错了什么?

1 个答案:

答案 0 :(得分:2)

您不应该进行SVN结账。

您可以使用maven原型创建一个启动项目,输入:

mvn archetype:generate 
-DarchetypeRepository=http://maven.onehippo.com/maven2 
-DarchetypeGroupId=org.onehippo.cms7 
-DarchetypeArtifactId=hippo-archetype-website 
-DarchetypeVersion=1.07.06

然后你可以

mvn install 

并启动您的项目

mvn -P cargo.run

或避免每次都从新的存储库开始

mvn -P cargo.run -Drepo.path=/home/usr/myrepo

这里都解释了这一点: http://www.onehippo.org/7_8/trails/developer-trail/hippo-baby-steps.html