source: extensions/jiwigo/trunk/pom.xml @ 9878

Last change on this file since 9878 was 9878, checked in by mlg, 13 years ago

Fixes one major display bug
There were displays bugs with the horizontal splitpane where trying to resize it.
I have fixed by changing the original scale (1.0 to 0.99). Don't know why I had to do this, bug it seems to fix the bug
Fixes an other bug in the image browser : the image list was kept when browsing through the different categories.

File size: 1.6 KB
Line 
1<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">
2  <modelVersion>4.0.0</modelVersion>
3  <groupId>Jiwigo</groupId>
4  <artifactId>Jiwigo</artifactId>
5  <version>0.14</version>
6
7        <repositories>
8                <repository>
9                        <id>mael-repos</id>
10                        <name>Mael Repository</name>
11                        <url>http://maven.le-guevel.com/artifactory/libs-release-local/</url>
12                </repository>
13        </repositories>
14
15  <dependencies>
16
17
18        <dependency>
19            <groupId>net.iharder</groupId>
20            <artifactId>filedrop</artifactId>
21            <version>1.0</version>
22        </dependency>
23        <dependency>
24            <groupId>org.swinglabs</groupId>
25            <artifactId>swingx</artifactId>
26            <version>1.6.1</version>
27        </dependency>
28        <dependency>
29            <groupId>fr.mael.jiwigo</groupId>
30            <artifactId>jiwigo-ws-api</artifactId>
31            <version>0.13.1.1</version>
32        </dependency>
33
34  </dependencies>
35
36  <build>
37    <plugins>
38      <plugin>
39        <!-- NOTE: We don't need a groupId specification because the group is
40             org.apache.maven.plugins ...which is assumed by default.
41         -->
42        <artifactId>maven-assembly-plugin</artifactId>
43        <version>2.2-beta-5</version>
44        <configuration>
45          <descriptorRefs>
46            <descriptorRef>jar-with-dependencies</descriptorRef>
47          </descriptorRefs>
48          <archive>
49            <manifest>
50              <mainClass>fr.mael.jiwigo.Main</mainClass>
51            </manifest>
52          </archive>
53        </configuration>
54       </plugin>
55      </plugins>
56  </build>
57</project>
Note: See TracBrowser for help on using the repository browser.