<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>Jiwigo</groupId>
  <artifactId>Jiwigo</artifactId>
  <version>0.14</version>

	<repositories>
		<repository>
			<id>mael-repos</id>
			<name>Mael Repository</name>
			<url>http://maven.le-guevel.com/artifactory/libs-release-local/</url>
		</repository>
	</repositories>

  <dependencies>


	<dependency>
	    <groupId>net.iharder</groupId>
	    <artifactId>filedrop</artifactId>
	    <version>1.0</version>
	</dependency>
	<dependency>
	    <groupId>org.swinglabs</groupId>
	    <artifactId>swingx</artifactId>
	    <version>1.6.1</version>
	</dependency>
	<dependency>
	    <groupId>fr.mael.jiwigo</groupId>
	    <artifactId>jiwigo-ws-api</artifactId>
	    <version>0.2b</version>
	</dependency>
	<dependency>
	    <groupId>org.slf4j</groupId>
	    <artifactId>slf4j-log4j12</artifactId>
	    <version>1.6.1</version>
	</dependency>
<!--	<dependency>-->
<!--	    <groupId>org.jdom</groupId>-->
<!--	    <artifactId>jdom</artifactId>-->
<!--	    <version>1.1</version>-->
<!--	</dependency>-->
	<dependency>
	    <groupId>org.springframework</groupId>
	    <artifactId>spring-beans</artifactId>
	    <version>3.0.5.RELEASE</version>
	</dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <!-- NOTE: We don't need a groupId specification because the group is
             org.apache.maven.plugins ...which is assumed by default.
         -->
        <artifactId>maven-assembly-plugin</artifactId>
        <version>2.2-beta-5</version>
        <configuration>
          <descriptorRefs>
            <descriptorRef>jar-with-dependencies</descriptorRef>
          </descriptorRefs>
          <archive>
            <manifest>
              <mainClass>fr.mael.jiwigo.Main</mainClass>
            </manifest>
          </archive>
        </configuration>
       </plugin>
      </plugins>
  </build>
</project>