Bonjour,
Voici le plugin que j'utilise et la config du serveur SVN :
A la compile ca me dit :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 <scm> <connection>scm:svn:svn://192.168.1.200/msc_alfresco/fr.intuitiv.msc/trunk</connection> <developerConnection>scm:svn:svn://192.168.1.200/msc_alfresco/fr.intuitiv.msc/trunk</developerConnection> </scm> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.0-beta-3</version> <executions> <execution> <phase>validate</phase> <goals> <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>true</doCheck> <doUpdate>true</doUpdate> <providerImplementations> <svn>svn</svn> </providerImplementations> </configuration> </plugin>
L'erreur est clair : je n'arrive pas à me connecter au SVN.[INFO] [buildnumber:create]
[INFO] Change the default 'svn' provider implementation to 'svn'.
[INFO] Verifying there are no local modifications ...
[INFO] Executing: cmd.exe /X /C "svn --non-interactive status"
[INFO] Working directory: C:\intuitiv\src\workspace-msc-311\fr.intuitiv.msc.jar
Provider message:
The svn command failed.
Command output:
'svn' n'est pas reconnu en tant que commande interne
ou externe, un programme ex‚cutable ou un fichier de commandes.
[ERROR]
The following mojo encountered an error while executing:
Group-Id: org.codehaus.mojo
Artifact-Id: buildnumber-maven-plugin
Version: 1.0-beta-3
Mojo: create
brought in via: POM
While building project:
Group-Id: fr.intuitiv.msc
Artifact-Id: fr.intuitiv.msc.jar
Version: 0.0.1-SNAPSHOT
From file: C:\intuitiv\src\workspace-msc-311\fr.intuitiv.msc.jar\pom.xml
Reason: An error has occurred while checking scm status.
Que dois-je mettre en <url> dans le tag <scm> ?
Je dispose d'un serveur SVN tout bête sur une autre machine linux dans mon réseau local (ip 192.168.0.200) qui dispose de mon serveur SVN avec le code source. J'y accède via eclipse (plugin subclipse) avec l'url en question :
svn://192.168.1.200/msc_alfresco/fr.intuitiv.msc/trunk
Comment procéder ? Merci !
Partager