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

    r671 r757  
    11<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    22        xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
     3    <parent> 
     4        <groupId>de.ugoe.cs.quest</groupId> 
     5        <artifactId>quest</artifactId> 
     6        <version>0.0.1-SNAPSHOT</version> 
     7    </parent> 
    38        <modelVersion>4.0.0</modelVersion> 
    4         <groupId>de.ugoe.cs.quest</groupId> 
    59        <artifactId>quest-plugin-guitar</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    710        <name>quest-plugin-guitar</name> 
    811        <scm> 
    9                 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</url> 
     12                <url>${quest-scm-trunk-dir}/quest-plugin-guitar</url> 
    1013        </scm> 
    11         <repositories> 
    12                 <repository> 
    13                         <id>quest-repo</id> 
    14                         <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url> 
    15                 </repository> 
    16         </repositories> 
    1714        <dependencies> 
    1815                <dependency> 
     
    2421                        <groupId>de.ugoe.cs.quest</groupId> 
    2522                        <artifactId>quest-plugin-core</artifactId> 
    26                         <version>0.0.1-SNAPSHOT</version> 
     23                        <version>${parent.version}</version> 
    2724                </dependency> 
    2825                <dependency> 
    2926                        <groupId>de.ugoe.cs.quest</groupId> 
    3027                        <artifactId>quest-core-events</artifactId> 
    31                         <version>0.0.1-SNAPSHOT</version> 
     28                        <version>${parent.version}</version> 
    3229                </dependency> 
    3330                <dependency> 
    3431                        <groupId>de.ugoe.cs.quest</groupId> 
    3532                        <artifactId>quest-core-usageprofiles</artifactId> 
    36                         <version>0.0.1-SNAPSHOT</version> 
     33                        <version>${parent.version}</version> 
    3734                </dependency> 
    3835                <dependency> 
    3936                        <groupId>de.ugoe.cs.quest</groupId> 
    4037                        <artifactId>quest-misc</artifactId> 
    41                         <version>0.0.1-SNAPSHOT</version> 
     38                        <version>${parent.version}</version> 
    4239                </dependency> 
    4340                <dependency> 
     
    4744                </dependency> 
    4845        </dependencies> 
    49         <build> 
    50                 <plugins> 
    51                         <plugin> 
    52                                 <artifactId>maven-compiler-plugin</artifactId> 
    53                                 <version>2.3.2</version> 
    54                                 <configuration> 
    55                                         <source>1.6</source> 
    56                                         <target>1.6</target> 
    57                                 </configuration> 
    58                         </plugin> 
    59                 </plugins> 
    60         </build> 
    6146</project> 
Note: See TracChangeset for help on using the changeset viewer.