Sorry, if this is very,very basic .....

I need to know a rigth configuration...

For example: If i have a project called 'autentia':

The Subversion directories must be:

server/autentia/trunk
server/autentia/branches
server/autentia/tags


well......

Now, how must be the POM file... something like this: ???


 <scm><connection>scm:svn:http://server/autentia</connection>
       
<developerConnection>scm:svn:http://server/autentia</developerConnection>
        <url>http://server/autentia</url>
    </scm>



    <repositories>
               <repository>
            <id>repo</id>
            <name>repo download</name>
            <url>http://server/autentia/trunk</url>
        </repository>
  </repositories>

<distributionManagement>
   
       
        <repository>
            <id>repo</id>
            <name>repo upload</name>
           <url>scp://lserver/autentia/trunk</url>
        </repository>

       <snapshotRepository>
            <id>srepo</id>
            <name>repositori up</name>
            <url>scp://server/autentia/tags</url>
        </snapshotRepository>  

</distributionManagement>

 <build>
        <plugins>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                    <configuration>
                        <password>passw</password>
                        <tagBase>svn://server/autentia/trunk</tagBase>
                    </configuration>
            </plugin>
        </plugins>
      
    </build>

¿¿¿¿¿???

Many thanks for the answers ,i need it.

Javier 
-- 
View this message in context: 
http://www.nabble.com/the-standard-svn-directory-structure-tf4017657s177.html#a11410143
Sent from the Maven - Users mailing list archive at Nabble.com.


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

Reply via email to