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

    r689 r763  
    1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 
    3         <modelVersion>4.0.0</modelVersion> 
    4         <groupId>de.ugoe.cs.quest</groupId> 
    5         <artifactId>quest-core-events-test</artifactId> 
    6         <version>0.0.1-SNAPSHOT</version> 
    7         <name>quest-core-events-test</name> 
    8         <scm> 
    9                 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events-test</url> 
    10         </scm> 
    11         <dependencies> 
    12                 <dependency> 
    13                         <groupId>de.ugoe.cs.quest</groupId> 
    14                         <artifactId>quest-core-events</artifactId> 
    15                         <version>0.0.1-SNAPSHOT</version> 
    16                         <scope>test</scope> 
    17                 </dependency> 
    18                 <dependency> 
    19                         <groupId>de.ugoe.cs.quest</groupId> 
    20                         <artifactId>quest-test-utils</artifactId> 
    21                         <version>0.0.1-SNAPSHOT</version> 
    22                         <scope>test</scope> 
    23                 </dependency> 
    24                 <dependency> 
    25                         <groupId>junit</groupId> 
    26                         <artifactId>junit</artifactId> 
    27                         <version>4.8.1</version> 
    28                         <scope>test</scope> 
    29                 </dependency> 
    30                 <dependency> 
    31                         <groupId>junit-addons</groupId> 
    32                         <artifactId>junit-addons</artifactId> 
    33                         <version>1.4</version> 
    34                 </dependency> 
    35                 <dependency> 
    36                         <groupId>nl.jqno.equalsverifier</groupId> 
    37                         <artifactId>equalsverifier</artifactId> 
    38                         <version>1.1.3</version> 
    39                 </dependency> 
    40                 <dependency> 
    41                         <groupId>org.mockito</groupId> 
    42                         <artifactId>mockito-core</artifactId> 
    43                         <version>1.9.0</version> 
    44                         <scope>test</scope> 
    45                 </dependency> 
    46         </dependencies> 
    47         <build> 
    48                 <pluginManagement> 
    49                         <plugins> 
    50                                 <plugin> 
    51                                         <groupId>org.eclipse.m2e</groupId> 
    52                                         <artifactId>lifecycle-mapping</artifactId> 
    53                                         <version>1.0.0</version> 
    54                                         <configuration> 
    55                                                 <lifecycleMappingMetadata> 
    56                                                         <pluginExecutions> 
    57                                                                 <pluginExecution> 
    58                                                                         <pluginExecutionFilter> 
    59                                                                                 <groupId>org.apache.maven.plugins</groupId> 
    60                                                                                 <artifactId>maven-dependency-plugin</artifactId> 
    61                                                                                 <versionRange>[1.0.0,)</versionRange> 
    62                                                                                 <goals> 
    63                                                                                         <goal>unpack</goal> 
    64                                                                                 </goals> 
    65                                                                         </pluginExecutionFilter> 
    66                                                                         <action> 
    67                                                                                 <ignore /> 
    68                                                                         </action> 
    69                                                                 </pluginExecution> 
    70                                                                 <pluginExecution> 
    71                                                                         <pluginExecutionFilter> 
    72                                                                                 <groupId>org.codehaus.mojo</groupId> 
    73                                                                                 <artifactId>emma-maven-plugin</artifactId> 
    74                                                                                 <versionRange>[1.0-alpha-3,)</versionRange> 
    75                                                                                 <goals> 
    76                                                                                         <goal>emma</goal> 
    77                                                                                 </goals> 
    78                                                                         </pluginExecutionFilter> 
    79                                                                         <action> 
    80                                                                                 <ignore /> 
    81                                                                         </action> 
    82                                                                 </pluginExecution> 
    83                                                         </pluginExecutions> 
    84                                                 </lifecycleMappingMetadata> 
    85                                         </configuration> 
    86                                 </plugin> 
    87                         </plugins> 
    88                 </pluginManagement> 
    89                 <plugins> 
    90                         <plugin> 
    91                                 <groupId>org.apache.maven.plugins</groupId> 
    92                                 <artifactId>maven-compiler-plugin</artifactId> 
    93                                 <version>2.3.2</version> 
    94                                 <configuration> 
    95                                         <source>1.6</source> 
    96                                         <target>1.6</target> 
    97                                 </configuration> 
    98                         </plugin> 
    99                         <plugin> 
    100                                 <groupId>org.apache.maven.plugins</groupId> 
    101                                 <artifactId>maven-dependency-plugin</artifactId> 
    102                                 <version>2.4</version> 
    103                                 <executions> 
    104                                         <execution> 
    105                                                 <id>unpack</id> 
    106                                                 <phase>process-classes</phase> 
    107                                                 <goals> 
    108                                                         <goal>unpack</goal> 
    109                                                 </goals> 
    110                                                 <configuration> 
    111                                                         <artifactItems> 
    112                                                                 <artifactItem> 
    113                                                                         <groupId>de.ugoe.cs.quest</groupId> 
    114                                                                         <artifactId>quest-core-events</artifactId> 
    115                                                                         <version>0.0.1-SNAPSHOT</version> 
    116                                                                         <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    117                                                                 </artifactItem> 
    118                                                         </artifactItems> 
    119                                                 </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> 
    146                                         </execution> 
    147                                 </executions> 
    148                         </plugin> 
    149                 </plugins> 
    150         </build> 
     1<project 
     2    xmlns="http://maven.apache.org/POM/4.0.0" 
     3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
     4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 
     5> 
     6    <parent> 
     7        <groupId>de.ugoe.cs.quest</groupId> 
     8        <artifactId>quest-test</artifactId> 
     9        <version>0.0.1-SNAPSHOT</version> 
     10    </parent> 
     11    <modelVersion>4.0.0</modelVersion> 
     12    <artifactId>quest-core-events-test</artifactId> 
     13    <properties> 
     14        <tested-artifactId>quest-core-events</tested-artifactId> 
     15    </properties> 
     16    <dependencies> 
     17        <dependency> 
     18            <groupId>junit-addons</groupId> 
     19            <artifactId>junit-addons</artifactId> 
     20            <version>1.4</version> 
     21        </dependency> 
     22        <dependency> 
     23            <groupId>nl.jqno.equalsverifier</groupId> 
     24            <artifactId>equalsverifier</artifactId> 
     25            <version>1.1.3</version> 
     26        </dependency> 
     27        <dependency> 
     28            <groupId>org.mockito</groupId> 
     29            <artifactId>mockito-core</artifactId> 
     30            <version>1.9.0</version> 
     31            <scope>test</scope> 
     32        </dependency> 
     33    </dependencies> 
    15134</project> 
Note: See TracChangeset for help on using the changeset viewer.