~ubuntu-branches/ubuntu/natty/libswingx-java/natty

« back to all changes in this revision

Viewing changes to swingx-demos/pom.xml

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-07-26 12:11:27 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100726121127-k0d3b21nhja0dn93
Tags: 1:1.6.1-1
* New upstream release.
* Switch to 3.0 (quilt) format.
* Bump Standards-Version to 3.9.1: no changes needed.
* Drop Depends on JRE: not requested anymore by new Java Policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="UTF-8"?>
2
 
<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">
3
 
  <parent>
4
 
    <artifactId>swingx-project</artifactId>
5
 
        <groupId>org.swinglabs</groupId>
6
 
    <version>0.9.3-SNAPSHOT</version>
7
 
    <relativePath>../pom.xml</relativePath>
8
 
  </parent>
9
 
  <modelVersion>4.0.0</modelVersion>
10
 
  <artifactId>swingx-demo</artifactId>
11
 
  <packaging>jar</packaging>
12
 
  <name>SwingX Demos</name>
13
 
    <dependencies>
14
 
        <dependency>
15
 
          <groupId>org.swinglabs</groupId>
16
 
          <artifactId>swingx-core</artifactId>
17
 
          <version>${parent.version}</version>
18
 
        </dependency>
19
 
        <dependency>
20
 
          <groupId>org.swinglabs</groupId>
21
 
          <artifactId>swingx-beaninfo</artifactId>
22
 
          <version>${parent.version}</version>
23
 
        </dependency>
24
 
                <dependency>
25
 
                        <groupId>com.jhlabs</groupId>
26
 
                        <artifactId>filters</artifactId>
27
 
                </dependency>
28
 
                <dependency>
29
 
            <groupId>org.swinglabs</groupId>
30
 
            <artifactId>swing-worker</artifactId>
31
 
        </dependency>
32
 
        <dependency>
33
 
            <groupId>org.swinglabs</groupId>
34
 
            <artifactId>multiplegradientpaint</artifactId>
35
 
        </dependency>    
36
 
        <!-- Preferably we should use this jmock configuration with junit 4 -->
37
 
        <!--dependency>
38
 
            <groupId>org.jmock</groupId>
39
 
            <artifactId>jmock-junit4</artifactId>
40
 
            <version>2.4.0</version>
41
 
            <scope>test</scope>
42
 
        </dependency-->
43
 
        <dependency>
44
 
            <groupId>org.swinglabs</groupId>
45
 
            <artifactId>swing-layout</artifactId>
46
 
            <version>1.0.3</version>
47
 
            <scope>compile</scope>
48
 
        </dependency>
49
 
        </dependencies>
50
 
  <build>
51
 
    <sourceDirectory>../src/demo</sourceDirectory>
52
 
    <plugins>
53
 
      <plugin>
54
 
        <groupId>org.apache.maven.plugins</groupId>
55
 
        <artifactId>maven-jar-plugin</artifactId>
56
 
      </plugin>
57
 
    </plugins>
58
 
  </build>
59
 
</project>