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

Legend:

Unmodified
Added
Removed
  • trunk/quest-test-utils/pom.xml

    r703 r763  
    44    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
    55> 
     6    <parent> 
     7        <groupId>de.ugoe.cs.quest</groupId> 
     8        <artifactId>quest</artifactId> 
     9        <version>0.0.1-SNAPSHOT</version> 
     10    </parent> 
    611    <modelVersion>4.0.0</modelVersion> 
    7     <groupId>de.ugoe.cs.quest</groupId> 
    812    <artifactId>quest-test-utils</artifactId> 
    9     <version>0.0.1-SNAPSHOT</version> 
    1013    <name>quest-test-utils</name> 
    1114    <scm> 
    12         <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-test-utils</url> 
     15        <url>${quest-scm-trunk-dir}/quest-test-utils</url> 
    1316    </scm> 
    1417    <dependencies> 
     
    2124            <groupId>de.ugoe.cs.quest</groupId> 
    2225            <artifactId>quest-core-events</artifactId> 
    23             <version>0.0.1-SNAPSHOT</version> 
     26            <version>${parent.version}</version> 
     27        </dependency> 
     28        <dependency> 
     29            <groupId>de.ugoe.cs.quest</groupId> 
     30            <artifactId>quest-core-usageprofiles</artifactId> 
     31            <version>${parent.version}</version> 
    2432        </dependency> 
    2533        <dependency> 
     
    2937        </dependency> 
    3038    </dependencies> 
    31     <build> 
    32         <plugins> 
    33             <plugin> 
    34                 <artifactId>maven-compiler-plugin</artifactId> 
    35                 <version>2.3.2</version> 
    36                 <configuration> 
    37                     <source>1.6</source> 
    38                     <target>1.6</target> 
    39                 </configuration> 
    40             </plugin> 
    41         </plugins> 
    42     </build> 
    4339</project> 
Note: See TracChangeset for help on using the changeset viewer.