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

    r705 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-test</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-plugin-mfc-test</artifactId> 
    9     <version>0.0.1-SNAPSHOT</version> 
    10     <name>quest-plugin-jfc-test</name> 
    11     <scm> 
    12         <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc-test</url> 
    13     </scm> 
     13    <properties> 
     14        <tested-artifactId>quest-plugin-mfc</tested-artifactId> 
     15    </properties> 
    1416    <dependencies> 
    1517        <dependency> 
    1618            <groupId>de.ugoe.cs.quest</groupId> 
    17             <artifactId>quest-plugin-mfc</artifactId> 
    18             <version>0.0.1-SNAPSHOT</version> 
    19             <scope>test</scope> 
    20         </dependency> 
    21         <dependency> 
    22             <groupId>de.ugoe.cs.quest</groupId> 
    2319            <artifactId>quest-ui-core</artifactId> 
    24             <version>0.0.1-SNAPSHOT</version> 
    25             <scope>test</scope> 
    26         </dependency> 
    27         <dependency> 
    28             <groupId>junit</groupId> 
    29             <artifactId>junit</artifactId> 
    30             <version>4.8.1</version> 
     20            <version>${tested-quest-version}</version> 
    3121            <scope>test</scope> 
    3222        </dependency> 
    3323    </dependencies> 
    3424    <build> 
    35         <pluginManagement> 
    36             <plugins> 
    37                 <plugin> 
    38                     <groupId>org.eclipse.m2e</groupId> 
    39                     <artifactId>lifecycle-mapping</artifactId> 
    40                     <version>1.0.0</version> 
    41                     <configuration> 
    42                         <lifecycleMappingMetadata> 
    43                             <pluginExecutions> 
    44                                 <pluginExecution> 
    45                                     <pluginExecutionFilter> 
    46                                         <groupId>org.apache.maven.plugins</groupId> 
    47                                         <artifactId>maven-dependency-plugin</artifactId> 
    48                                         <versionRange>[1.0.0,)</versionRange> 
    49                                         <goals> 
    50                                             <goal>unpack</goal> 
    51                                         </goals> 
    52                                     </pluginExecutionFilter> 
    53                                     <action> 
    54                                         <ignore /> 
    55                                     </action> 
    56                                 </pluginExecution> 
    57                                 <pluginExecution> 
    58                                     <pluginExecutionFilter> 
    59                                         <groupId>org.codehaus.mojo</groupId> 
    60                                         <artifactId>emma-maven-plugin</artifactId> 
    61                                         <versionRange>[1.0-alpha-3,)</versionRange> 
    62                                         <goals> 
    63                                             <goal>emma</goal> 
    64                                         </goals> 
    65                                     </pluginExecutionFilter> 
    66                                     <action> 
    67                                         <ignore /> 
    68                                     </action> 
    69                                 </pluginExecution> 
    70                             </pluginExecutions> 
    71                         </lifecycleMappingMetadata> 
    72                     </configuration> 
    73                 </plugin> 
    74             </plugins> 
    75         </pluginManagement> 
    7625        <plugins> 
    77             <plugin> 
    78                 <groupId>org.apache.maven.plugins</groupId> 
    79                 <artifactId>maven-compiler-plugin</artifactId> 
    80                 <version>2.3.2</version> 
    81                 <configuration> 
    82                     <source>1.6</source> 
    83                     <target>1.6</target> 
    84                 </configuration> 
    85             </plugin> 
    8626            <plugin> 
    8727                <groupId>org.apache.maven.plugins</groupId> 
     
    8929                <version>2.4</version> 
    9030                <executions> 
    91                     <execution> 
    92                         <id>unpack</id> 
    93                         <phase>process-classes</phase> 
    94                         <goals> 
    95                             <goal>unpack</goal> 
    96                         </goals> 
    97                         <configuration> 
    98                             <artifactItems> 
    99                                 <artifactItem> 
    100                                     <groupId>de.ugoe.cs.quest</groupId> 
    101                                     <artifactId>quest-plugin-mfc</artifactId> 
    102                                     <version>0.0.1-SNAPSHOT</version> 
    103                                     <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    104                                 </artifactItem> 
    105                             </artifactItems> 
    106                         </configuration> 
    107                     </execution> 
    10831                    <execution> 
    10932                        <id>get-mfc-plugin-config</id> 
     
    11740                                    <groupId>de.ugoe.cs.quest</groupId> 
    11841                                    <artifactId>quest-plugin-mfc</artifactId> 
    119                                     <version>0.0.1-SNAPSHOT</version> 
     42                                    <version>${tested-quest-version}</version> 
    12043                                    <classifier>config</classifier> 
    12144                                    <type>zip</type> 
     
    12447                            </artifactItems> 
    12548                        </configuration> 
    126                     </execution> 
    127                 </executions> 
    128             </plugin> 
    129             <plugin> 
    130                 <groupId>org.codehaus.mojo</groupId> 
    131                 <artifactId>emma-maven-plugin</artifactId> 
    132                 <version>1.0-alpha-3</version> 
    133                 <inherited>true</inherited> 
    134                 <executions> 
    135                     <execution> 
    136                         <phase>process-classes</phase> 
    137                         <goals> 
    138                             <goal>emma</goal> 
    139                         </goals> 
    140                     </execution> 
    141                 </executions> 
    142             </plugin> 
    143             <plugin> 
    144                 <groupId>org.apache.maven.plugins</groupId> 
    145                 <artifactId>maven-jar-plugin</artifactId> 
    146                 <version>2.3.2</version> 
    147                 <executions> 
    148                     <execution> 
    149                         <goals> 
    150                             <goal>test-jar</goal> 
    151                         </goals> 
    15249                    </execution> 
    15350                </executions> 
Note: See TracChangeset for help on using the changeset viewer.