Ignore:
Timestamp:
09/04/12 10:39:27 (12 years ago)
Author:
pharms
Message:
  • created a parent pom project
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-ui-swt/pom.xml

    r707 r757  
    11<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/xsd/maven-4.0.0.xsd"> 
     2  <parent> 
     3    <groupId>de.ugoe.cs.quest</groupId> 
     4    <artifactId>quest</artifactId> 
     5    <version>0.0.1-SNAPSHOT</version> 
     6  </parent> 
    27  <modelVersion>4.0.0</modelVersion> 
    3   <groupId>de.ugoe.cs.quest</groupId> 
    48  <artifactId>quest-ui-swt</artifactId> 
    5   <version>0.0.1-SNAPSHOT</version> 
    69  <name>quest-ui-swt</name> 
    7 <scm> 
    8                 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-swt</url> 
     10    <scm> 
     11                <url>${quest-scm-trunk-dir}/quest-ui-swt</url> 
    912        </scm> 
    1013        <repositories> 
     
    1215                        <id>swt-repo</id> 
    1316                        <url>https://swt-repo.googlecode.com/svn/repo</url> 
    14                 </repository> 
    15                 <repository> 
    16                         <id>quest-repo</id> 
    17                         <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
    1817                </repository> 
    1918        </repositories> 
     
    2726                        <groupId>de.ugoe.cs.quest</groupId> 
    2827                        <artifactId>quest-core-events</artifactId> 
    29                         <version>0.0.1-SNAPSHOT</version> 
     28                        <version>${parent.version}</version> 
    3029                </dependency> 
    3130                <dependency> 
    3231                        <groupId>de.ugoe.cs.quest</groupId> 
    3332                        <artifactId>quest-core-assertions</artifactId> 
    34                         <version>0.0.1-SNAPSHOT</version> 
     33                        <version>${parent.version}</version> 
    3534                </dependency> 
    3635                <dependency> 
    3736                        <groupId>de.ugoe.cs.quest</groupId> 
    3837                        <artifactId>quest-core-usageprofiles</artifactId> 
    39                         <version>0.0.1-SNAPSHOT</version> 
     38                        <version>${parent.version}</version> 
    4039                </dependency> 
    4140                <dependency> 
     
    144143                </profile> 
    145144        </profiles> 
    146  
    147         <build> 
    148                 <plugins> 
    149                         <plugin> 
    150                                 <artifactId>maven-compiler-plugin</artifactId> 
    151                                 <version>2.3.2</version> 
    152                                 <configuration> 
    153                                         <source>1.6</source> 
    154                                         <target>1.6</target> 
    155                                 </configuration> 
    156                         </plugin> 
    157                 </plugins> 
    158         </build> 
    159145</project> 
Note: See TracChangeset for help on using the changeset viewer.