Ignore:
Timestamp:
08/16/12 12:34:24 (12 years ago)
Author:
sherbold
Message:
  • countless adaptations throughout nearly all components to remove errors introduced due to the refactoring of the event core
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-events-test/pom.xml

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