[maven2] No sources to compile
:salut:
J'ai un petit problème et je ne comprend pas...
Je compile une partie de mon projet et il me dit que je n'ai pas de sources...
voici mon POM...
Code:
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
| <?xml version="1.0" encoding="UTF-8"?>
<project>
<!--
<parent>
<artifactId>dra.proto</artifactId>
<groupId>dra.proto</groupId>
<version>0.0.1</version>
<relativePath>dra.proto</relativePath>
</parent>
-->
<modelVersion>4.0.0</modelVersion>
<groupId>dra.proto.laf</groupId>
<artifactId>dra.proto.laf</artifactId>
<version>0.0.1</version>
<description></description>
<build>
<!--
<resources>
<resource>
<targetPath/>
<filtering/>
<directory/>
<includes/>
<excludes/>
</resource>
</resources>
-->
<sourceDirectory>/src/java</sourceDirectory>
<outputDirectory>/bin</outputDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<includes>
<include/>
</includes>
</configuration>
</plugin>
</plugins>
</build>
<scm>
<connection> scm:svn:svn://"adresse ip"/dra.proto.laf </connection>
<developerConnection> scm:svn:svn://"adresse ip"/dra.proto.laf
</developerConnection>
<url> http://"adresse ip"/svn/dra.proto.laf </url>
<tag>HEAD</tag>
</scm>
</project> |
Me manque-t'il quelque chose ?
et mon arborescence
|-src
|_|-java
|____|-com
|_______|-digitprop
|___________|-tonic
|______________|-icons
|_________________|-*.java
|_________________|-... .java
|
|
|-pom.xml
edit :
voilà ce que ça m'affiche :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| [INFO] ----------------------------------------------------------------------------
[INFO] Building Unnamed - dra.proto.laf:dra.proto.laf:jar:0.0.1
[INFO] task-segment: [compiler:compile]
[INFO] ----------------------------------------------------------------------------
[INFO] Searching repository for plugin with prefix: 'compiler'.
[INFO] compiler:compile
[INFO] No sources to compile
[INFO] ----------------------------------------------------------------------------
[INFO] BUILD SUCCESSFUL
[INFO] ----------------------------------------------------------------------------
[INFO] Total time: 1 second
[INFO] Finished at: Wed Jul 26 13:56:33 CEST 2006
[INFO] Memory 1M/4M
[INFO] ---------------------------------------------------------------------------- |
:merci: