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-core/pom.xml

    r729 r757  
    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-ui-core</artifactId> 
    9   <version>0.0.1-SNAPSHOT</version> 
    1013  <name>quest-ui-core</name> 
    1114  <scm> 
    12     <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url> 
     15    <url>${quest-scm-trunk-dir}/quest-ui-core</url> 
    1316  </scm> 
    1417  <dependencies> 
     
    2124      <groupId>de.ugoe.cs.quest</groupId> 
    2225      <artifactId>quest-misc</artifactId> 
    23       <version>0.0.1-SNAPSHOT</version> 
     26      <version>${parent.version}</version> 
    2427    </dependency> 
    2528    <dependency> 
    2629      <groupId>de.ugoe.cs.quest</groupId> 
    2730      <artifactId>quest-core-events</artifactId> 
    28       <version>0.0.1-SNAPSHOT</version> 
     31      <version>${parent.version}</version> 
    2932    </dependency> 
    3033    <dependency> 
    3134      <groupId>de.ugoe.cs.quest</groupId> 
    3235      <artifactId>quest-core-usageprofiles</artifactId> 
    33       <version>0.0.1-SNAPSHOT</version> 
     36      <version>${parent.version}</version> 
    3437    </dependency> 
    3538    <dependency> 
    3639      <groupId>de.ugoe.cs.quest</groupId> 
    3740      <artifactId>quest-core-coverage</artifactId> 
    38       <version>0.0.1-SNAPSHOT</version> 
     41      <version>${parent.version}</version> 
    3942    </dependency> 
    4043    <dependency> 
    4144      <groupId>de.ugoe.cs.quest</groupId> 
    4245      <artifactId>quest-core-assertions</artifactId> 
    43       <version>0.0.1-SNAPSHOT</version> 
     46      <version>${parent.version}</version> 
    4447    </dependency> 
    4548    <dependency> 
     
    5154      <groupId>de.ugoe.cs.quest</groupId> 
    5255      <artifactId>quest-core-tasktrees</artifactId> 
    53       <version>0.0.1-SNAPSHOT</version> 
     56      <version>${parent.version}</version> 
    5457    </dependency> 
    5558    <dependency> 
    5659      <groupId>de.ugoe.cs.quest</groupId> 
    5760      <artifactId>quest-core-usability</artifactId> 
    58       <version>0.0.1-SNAPSHOT</version> 
     61      <version>${parent.version}</version> 
    5962    </dependency> 
    6063    <dependency> 
     
    6972    </dependency> 
    7073  </dependencies> 
    71   <build> 
    72     <plugins> 
    73       <plugin> 
    74         <artifactId>maven-compiler-plugin</artifactId> 
    75         <version>2.3.2</version> 
    76         <configuration> 
    77           <source>1.6</source> 
    78           <target>1.6</target> 
    79         </configuration> 
    80       </plugin> 
    81     </plugins> 
    82   </build> 
    8374</project> 
Note: See TracChangeset for help on using the changeset viewer.