I work with my student group on a project :
We have some problems sharing our project.
There are 2 files that we have to modify everytime :
- project.properties
- private.properties
The Problem is, that we use librarys and they are relative paths to our hard drives.
so when we check out : we have to modify these files to get the project work :
Example :
C:\Users\**\Desktop\teddpee\EgisPartnerprofile\nbproject\build-impl.xml:519: Warning: Could not find file C:\vol\netbeans-6.1\6.1\enterprise5\modules\ext\jsf-1_2\jsf-impl.jar to copy.
C:\vol\netbeans-6.1\6.1\enterprise5\modules\ext\jsf-1_2\jsf-impl.jar is the path from someone other..
how can i solve this problem ?
There are two things you can do.
Establish a convention that everyone on the project uses and stick to it. Maybe you can have everyone create c:\jars directory and put all their common JARs there.
Or you can learn Maven or Ivy and let them handle your dependencies for you.