Martin, do I have access to upload jars to the maven repo on geotools.fr? If so, can you email me the user/pass? Thanks!

Sending loging and password by private email.

In theory, the above configuration should work:

------------------------------------------------------------------------------------

[in home/.m2/setting.xml]

    <server>
      <id>geotools-fr</id>
      <username>xxx</username>
      <password>xxx</password>
    </server>

[in gt/pom.xml]

    <repository>
      <id>geotools-fr</id>
      <name>Geotools release repository</name>
      <url>scp://maven.geotools.fr/var/www/geotools.fr/maven/repository</url>
    </repository>

------------------------------------------------------------------------------------

However, I use (for now) the following one instead:

[in home/.m2/setting.xml]

    <server>
      <id>geotools-fr-exe</id>
      <username>xxx</username>
      <password>xxx</password>
      <configuration>
        <sshExecutable>ssh</sshExecutable>
        <scpExecutable>scp</scpExecutable>
      </configuration>
    </server>

[in gt/pom.xml]

    <repository>
      <id>geotools-fr-exe</id>
      <name>Geotools release repository</name>
      <url>scpexe://maven.geotools.fr/var/www/geotools.fr/maven/repository</url>
    </repository>

[in gt/pom.xml]

------------------------------------------------------------------------------------

because, for a mysterious reason, the former is still asking for password on the command prompt for every file to be transfered. I suggest that you try the first form first (this mean modifying <repository> in pom.xml from "scpexe" to "scp" as show above). If it work without asking password for every file, then lets forget about "scpexe" and commit the modified pom.xml to SVN.

If it ask for password for every file, stop with [ctrl-C] and try the "scpexe" form. However you will need an external "scp" executable on yours path (it is present on must Linux box I believe).

On my machine "scpexe" work better than "scp".

Please let me know if you have any trouble, and thank for making the release,

        Martin.


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Geotools-devel mailing list
Geotools-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to