Hi Gang,
Im trialing the 2.0-beta-6 site plugin.
The problem I am having is with the site.xml generated html during the
stage-deploy goal. It does a few unexpected things:
- href's for menu items are stripped, e.g. href="index.html" just
goes to the web root of the site (which is also wrong see below)
- the absolute paths contain the domain in the url twice
- absolute paths contain release NOT staging "file system" path
information
- the site root seems to be composed of an absolute url, made up from
the <site><url>*****</...> which is an scp url
- using
<stagingSiteURL>scp://192.168.10.56/var/www/maven/sites/staging/${
project.groupId}/${project.version}/${project.artifactId
}</stagingSiteURL
The result is absolute menu items links like:
http://maven.mycompany.com/maven.mycompany.com/var/www/maven/sites/releases/myproject/1.2.1-SNAPSHOT/parent
My site.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<body>
<menu name="Overview">
<item name="Introduction" href="index.html"/>
</menu>
</body>
</project>
Any ideas?