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

    r625 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-jfc-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-jfc-test</url> 
    13     </scm> 
    14     <dependencies> 
    15         <dependency> 
    16             <groupId>de.ugoe.cs.quest</groupId> 
    17             <artifactId>quest-plugin-jfc</artifactId> 
    18             <version>0.0.1-SNAPSHOT</version> 
    19             <scope>test</scope> 
    20         </dependency> 
    21         <dependency> 
    22             <groupId>junit</groupId> 
    23             <artifactId>junit</artifactId> 
    24             <version>4.8.1</version> 
    25             <scope>test</scope> 
    26         </dependency> 
    27     </dependencies> 
     13    <properties> 
     14        <tested-artifactId>quest-plugin-jfc</tested-artifactId> 
     15    </properties> 
    2816    <build> 
    29         <pluginManagement> 
    30             <plugins> 
    31                 <plugin> 
    32                     <groupId>org.eclipse.m2e</groupId> 
    33                     <artifactId>lifecycle-mapping</artifactId> 
    34                     <version>1.0.0</version> 
    35                     <configuration> 
    36                         <lifecycleMappingMetadata> 
    37                             <pluginExecutions> 
    38                                 <pluginExecution> 
    39                                     <pluginExecutionFilter> 
    40                                         <groupId>org.apache.maven.plugins</groupId> 
    41                                         <artifactId>maven-dependency-plugin</artifactId> 
    42                                         <versionRange>[1.0.0,)</versionRange> 
    43                                         <goals> 
    44                                             <goal>unpack</goal> 
    45                                         </goals> 
    46                                     </pluginExecutionFilter> 
    47                                     <action> 
    48                                         <ignore /> 
    49                                     </action> 
    50                                 </pluginExecution> 
    51                                 <pluginExecution> 
    52                                     <pluginExecutionFilter> 
    53                                         <groupId>org.codehaus.mojo</groupId> 
    54                                         <artifactId>emma-maven-plugin</artifactId> 
    55                                         <versionRange>[1.0-alpha-3,)</versionRange> 
    56                                         <goals> 
    57                                             <goal>emma</goal> 
    58                                         </goals> 
    59                                     </pluginExecutionFilter> 
    60                                     <action> 
    61                                         <ignore /> 
    62                                     </action> 
    63                                 </pluginExecution> 
    64                             </pluginExecutions> 
    65                         </lifecycleMappingMetadata> 
    66                     </configuration> 
    67                 </plugin> 
    68             </plugins> 
    69         </pluginManagement> 
    7017        <plugins> 
    71             <plugin> 
    72                 <groupId>org.apache.maven.plugins</groupId> 
    73                 <artifactId>maven-compiler-plugin</artifactId> 
    74                 <version>2.3.2</version> 
    75                 <configuration> 
    76                     <source>1.6</source> 
    77                     <target>1.6</target> 
    78                 </configuration> 
    79             </plugin> 
    8018            <plugin> 
    8119                <groupId>org.apache.maven.plugins</groupId> 
     
    8321                <version>2.4</version> 
    8422                <executions> 
    85                     <execution> 
    86                         <id>unpack</id> 
    87                         <phase>process-classes</phase> 
    88                         <goals> 
    89                             <goal>unpack</goal> 
    90                         </goals> 
    91                         <configuration> 
    92                             <artifactItems> 
    93                                 <artifactItem> 
    94                                     <groupId>de.ugoe.cs.quest</groupId> 
    95                                     <artifactId>quest-plugin-jfc</artifactId> 
    96                                     <version>0.0.1-SNAPSHOT</version> 
    97                                     <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    98                                 </artifactItem> 
    99                             </artifactItems> 
    100                         </configuration> 
    101                     </execution> 
    10223                    <execution> 
    10324                        <id>get-jfc-plugin-config</id> 
     
    11132                                    <groupId>de.ugoe.cs.quest</groupId> 
    11233                                    <artifactId>quest-plugin-jfc</artifactId> 
    113                                     <version>0.0.1-SNAPSHOT</version> 
     34                                    <version>${tested-quest-version}</version> 
    11435                                    <classifier>config</classifier> 
    11536                                    <type>zip</type> 
     
    11839                            </artifactItems> 
    11940                        </configuration> 
    120                     </execution> 
    121                 </executions> 
    122             </plugin> 
    123             <plugin> 
    124                 <groupId>org.codehaus.mojo</groupId> 
    125                 <artifactId>emma-maven-plugin</artifactId> 
    126                 <version>1.0-alpha-3</version> 
    127                 <inherited>true</inherited> 
    128                 <executions> 
    129                     <execution> 
    130                         <phase>process-classes</phase> 
    131                         <goals> 
    132                             <goal>emma</goal> 
    133                         </goals> 
    134                     </execution> 
    135                 </executions> 
    136             </plugin> 
    137             <plugin> 
    138                 <groupId>org.apache.maven.plugins</groupId> 
    139                 <artifactId>maven-jar-plugin</artifactId> 
    140                 <version>2.3.2</version> 
    141                 <executions> 
    142                     <execution> 
    143                         <goals> 
    144                             <goal>test-jar</goal> 
    145                         </goals> 
    14641                    </execution> 
    14742                </executions> 
Note: See TracChangeset for help on using the changeset viewer.