Re: Compiling from source

"dominique (joe) pillot" <[email protected]> Fri, 22 Sep 2006 17:51:24 +0200
Newsgroups gmane.comp.cms.jahia.install
Message-ID <[email protected]>
Le 21 sept. 06 à 16:27, Sanjay Goel a écrit :

> Joe,
>
> I am not very comfortable with maven. Can you send me your  
> project.xml with dependencies removed. Also, when u say u use the  
> hotdeploy:tomcat goal, does it mean that you type maven  
> hotdeploy:tomcat in your root folder and you don't need to run any  
> other goal?

that's right.
(the goals under maven are very close of the ant syntax)
for the project.xml, you need simply to comment the dependency you  
dont want by example like this:
<!--
     <dependency>
       <groupId>struts</groupId>
       <artifactId>struts-faces</artifactId>
       <version>0.4</version>
       <properties>
         <war.bundle>true</war.bundle>
       </properties>
     </dependency>
     -->
and test the build process after

>
>
> I was trying to setup LDAP integration with jahia but I could not  
> understand the LDAP settings well, so I wanted to take a look at  
> the code and understand what I am doing wrong. As of now, mostly I  
> would be putting debug statements and stuff to understand LDAP  
> integration. Later on, I may like to look into other pieces of code.
>
> For LDAP, I checked http://www.jahia.net/jahia/page589.html#3 and  
> followed the steps, but I didn't understand what DN should I use.  
> Can you tell me how to find a valid DN for my LDAP server?
>
I'm not very skilled with ladp servers settings (dn, cn and other  
cryptic ldap stuff), so the only advice i can give you is to use a  
good ldap client (as i did) as JExplorer to know the specificity of  
your LDAP server's configuration before any try to set the LDAP jahia  
properties files.

joe