Ciao Valerio and Geoffrey,
the deployment made the trick. FYI (or anyone with a similar issue), I
had also to fix a couple of issues with grupId and artifac id
definitions.

Thanks for your help.
Stefano

On 9/24/06, Geoffrey De Smet <[EMAIL PROTECTED]> wrote:
Offline the links are wrong because online they are different:

Offline:

funambol
  target
   site
    a.html links to common/b.html
  common
   target
    site
     b.html

Online (after deployment):
  a.html still links to common/b.html
  common
   b.html

With kind regards,
Geoffrey De Smet





--
Stefano Fornari - Funambol Chief Architect / Funambol CTO
=======================================================
Home:
http://www.funambol.org

Documents:
http://www.funambol.org/documentation/documents.html

FAQ:
http://www.funambol.org/support/faq.html

WIKI:
https://wiki.objectweb.org/sync4j/

Mailinglist archives:
http://groups.yahoo.com/group/Sync4j (login required)
http://sourceforge.net/mailarchive/forum.php?forum_id=215 (sync4j-users)
http://sourceforge.net/mailarchive/forum.php?forum_id=48877
(funambol-dev)
<!--
    * Copyright (C) 2006 Funambol
    *
    * This program is free software; you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation; either version 2 of the License, or
    * (at your option) any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
    <modelVersion>4.0.0</modelVersion>
    <groupId>funambol</groupId>
    <artifactId>funambol</artifactId>
    <version>6.0-SNAPSHOT</version>
    <name>Funambol Project</name>
    <packaging>pom</packaging>
    <url>http://www.funambol.com</url>
    <modules>
        <module>common</module>
    </modules>

    <!--
        SITE
    -->
    <distributionManagement>
        <site>
            <id>objectweb</id>
            <url>file:///tmp/site</url>
        </site>
   </distributionManagement>

    <!--
        REPORTING
    -->
    <reporting>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jxr-plugin</artifactId>
                <!--configuration>
                    <aggregate>true</aggregate>
                </configuration-->
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-pmd-plugin</artifactId>
                <!--configuration>
                    <aggregate>true</aggregate>
                </configuration-->
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <!--configuration>
                    <aggregate>true</aggregate>
                </configuration-->
            </plugin>
        </plugins>
    </reporting>
</project>
<!--
    * Copyright (C) 2006 Funambol
    *
    * This program is free software; you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation; either version 2 of the License, or
    * (at your option) any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License
    * along with this program; if not, write to the Free Software
    * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
    <modelVersion>4.0.0</modelVersion>
    <groupId>funambol</groupId>
    <artifactId>common</artifactId>
    <version>6.0-SNAPSHOT</version>
    <name>Funambol Common Libraries</name>
    <packaging>pom</packaging>
    <parent>
        <artifactId>funambol</artifactId>
        <groupId>funambol</groupId>
        <version>6.0-SNAPSHOT</version>
    </parent>

    <modules>
        <module>pim</module>
    </modules>

    <!--
        SITE
    -->
    <distributionManagement>
        <site>
            <id>objectweb</id>
            <url>file:///tmp/site/common</url>
        </site>
   </distributionManagement>
</project>
<!--
  * Copyright (C) 2006 Funambol
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  * GNU General Public License for more details.
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd";>
    <modelVersion>4.0.0</modelVersion>
    <artifactId>pim</artifactId>
    <groupId>funambol</groupId>
    <version>6.0-SNAPSHOT</version>
    <name>Funambol Common PIM</name>

    <parent>
        <artifactId>common</artifactId>
        <groupId>funambol</groupId>
        <version>6.0-SNAPSHOT</version>
    </parent>

    <!--
        SITE
    -->
    <distributionManagement>
        <site>
            <id>objectweb</id>
            <url>file:///tmp/site/common/pim</url>
        </site>
   </distributionManagement>

    <!--
        DEPENDENCIES
    -->
    <dependencies>
        <!--
            External dependencies
        -->
        <dependency>
            <artifactId>commons-codec</artifactId>
            <groupId>commons-codec</groupId>
            <version>1.3</version>
        </dependency>

        <dependency>
            <artifactId>commons-lang</artifactId>
            <groupId>commons-lang</groupId>
            <version>2.1</version>
        </dependency>

        <dependency>
            <artifactId>joda-time</artifactId>
            <groupId>joda-time</groupId>
            <version>1.1</version>
        </dependency>

        <!--
            Internal dependencies
        -->
    </dependencies>

    <!--
        BUILD
    -->
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.0</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>javacc-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>javacc</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to