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

    r673 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-runner</artifactId> 
    9   <version>0.0.1-SNAPSHOT</version> 
    1013  <name>quest-runner</name> 
    1114  <scm> 
    12     <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-runner</url> 
     15    <url>${quest-scm-trunk-dir}/quest-runner</url> 
    1316  </scm> 
    1417  <dependencies> 
     
    2124      <groupId>de.ugoe.cs.quest</groupId> 
    2225      <artifactId>quest-plugin-core</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-ui-core</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-ui-swt</artifactId> 
    33       <version>0.0.1-SNAPSHOT</version> 
     36      <version>${parent.version}</version> 
    3437    </dependency> 
    3538    <dependency> 
     
    4144      <groupId>de.ugoe.cs.quest</groupId> 
    4245      <artifactId>quest-plugin-guitar</artifactId> 
    43       <version>0.0.1-SNAPSHOT</version> 
     46      <version>${parent.version}</version> 
    4447    </dependency> 
    4548    <dependency> 
    4649      <groupId>de.ugoe.cs.quest</groupId> 
    4750      <artifactId>quest-plugin-jfc</artifactId> 
    48       <version>0.0.1-SNAPSHOT</version> 
     51      <version>${parent.version}</version> 
    4952    </dependency> 
    5053    <dependency> 
    5154      <groupId>de.ugoe.cs.quest</groupId> 
    5255      <artifactId>quest-plugin-mfc</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-plugin-php</artifactId> 
    58       <version>0.0.1-SNAPSHOT</version> 
     61      <version>${parent.version}</version> 
    5962    </dependency> 
    6063    <dependency> 
     
    109112      <plugin> 
    110113        <groupId>org.apache.maven.plugins</groupId> 
    111         <artifactId>maven-compiler-plugin</artifactId> 
    112         <version>2.5.1</version> 
    113         <configuration> 
    114           <source>1.6</source> 
    115           <target>1.6</target> 
    116           <compilerArgument>-Xlint:all</compilerArgument> 
    117           <showDeprecation>true</showDeprecation> 
    118           <showWarnings>true</showWarnings> 
    119         </configuration> 
    120       </plugin> 
    121       <plugin> 
    122         <groupId>org.apache.maven.plugins</groupId> 
    123114        <artifactId>maven-jar-plugin</artifactId> 
    124115        <configuration> 
     
    148139                  <groupId>de.ugoe.cs.quest</groupId> 
    149140                  <artifactId>quest-plugin-jfc</artifactId> 
    150                   <version>0.0.1-SNAPSHOT</version> 
     141                  <version>${parent.version}</version> 
    151142                  <classifier>config</classifier> 
    152143                  <type>zip</type> 
     
    167158                  <groupId>de.ugoe.cs.quest</groupId> 
    168159                  <artifactId>quest-plugin-mfc</artifactId> 
    169                   <version>0.0.1-SNAPSHOT</version> 
     160                  <version>${parent.version}</version> 
    170161                  <classifier>config</classifier> 
    171162                  <type>zip</type> 
     
    186177                  <groupId>de.ugoe.cs.quest</groupId> 
    187178                  <artifactId>quest-plugin-php</artifactId> 
    188                   <version>0.0.1-SNAPSHOT</version> 
     179                  <version>${parent.version}</version> 
    189180                  <classifier>config</classifier> 
    190181                  <type>zip</type> 
Note: See TracChangeset for help on using the changeset viewer.