Changeset 625


Ignore:
Timestamp:
08/27/12 14:58:59 (12 years ago)
Author:
pharms
Message:
  • loading configuration of GUI element mapping and other stuff from tested maven artefact
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc-test/pom.xml

    r578 r625  
    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-plugin-jfc-test</artifactId> 
    5   <version>0.0.1-SNAPSHOT</version> 
    6   <name>quest-plugin-jfc-test</name> 
    7   <scm> 
    8     <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-jfc-test</url> 
    9   </scm> 
    10   <dependencies> 
    11     <dependency> 
    12         <groupId>de.ugoe.cs.quest</groupId> 
    13         <artifactId>quest-plugin-jfc</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   </dependencies> 
    24   <build> 
    25     <pluginManagement> 
    26       <plugins> 
    27         <plugin> 
    28           <groupId>org.eclipse.m2e</groupId> 
    29           <artifactId>lifecycle-mapping</artifactId> 
    30           <version>1.0.0</version> 
    31           <configuration> 
    32             <lifecycleMappingMetadata> 
    33               <pluginExecutions> 
    34                 <pluginExecution> 
    35                   <pluginExecutionFilter> 
    36                     <groupId>org.apache.maven.plugins</groupId> 
    37                     <artifactId>maven-dependency-plugin</artifactId> 
    38                     <versionRange>[1.0.0,)</versionRange> 
    39                     <goals> 
    40                       <goal>unpack</goal> 
    41                     </goals> 
    42                   </pluginExecutionFilter> 
    43                   <action> 
    44                     <ignore/> 
    45                   </action> 
    46                 </pluginExecution> 
    47                 <pluginExecution> 
    48                   <pluginExecutionFilter> 
    49                     <groupId>org.codehaus.mojo</groupId> 
    50                     <artifactId>emma-maven-plugin</artifactId> 
    51                     <versionRange>[1.0-alpha-3,)</versionRange> 
    52                     <goals> 
    53                       <goal>emma</goal> 
    54                     </goals> 
    55                   </pluginExecutionFilter> 
    56                   <action> 
    57                     <ignore/> 
    58                   </action> 
    59                 </pluginExecution> 
    60               </pluginExecutions> 
    61             </lifecycleMappingMetadata> 
    62           </configuration> 
    63         </plugin> 
    64       </plugins> 
    65     </pluginManagement> 
    66     <plugins> 
    67       <plugin> 
    68         <groupId>org.apache.maven.plugins</groupId> 
    69         <artifactId>maven-compiler-plugin</artifactId> 
    70         <version>2.3.2</version> 
    71         <configuration> 
    72           <source>1.6</source> 
    73           <target>1.6</target> 
    74         </configuration> 
    75       </plugin> 
    76       <plugin> 
    77         <groupId>org.apache.maven.plugins</groupId> 
    78         <artifactId>maven-dependency-plugin</artifactId> 
    79         <version>2.4</version> 
    80         <executions> 
    81           <execution> 
    82             <id>unpack</id> 
    83             <phase>process-classes</phase> 
    84             <goals> 
    85               <goal>unpack</goal> 
    86             </goals> 
    87             <configuration> 
    88               <artifactItems> 
    89                 <artifactItem> 
    90                   <groupId>de.ugoe.cs.quest</groupId> 
    91                   <artifactId>quest-plugin-jfc</artifactId> 
    92                   <version>0.0.1-SNAPSHOT</version> 
    93                   <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    94                 </artifactItem> 
    95               </artifactItems> 
    96             </configuration> 
    97           </execution> 
    98         </executions> 
    99       </plugin> 
    100       <plugin> 
    101         <groupId>org.codehaus.mojo</groupId> 
    102         <artifactId>emma-maven-plugin</artifactId> 
    103         <version>1.0-alpha-3</version> 
    104         <inherited>true</inherited>           
    105         <executions> 
    106           <execution> 
    107             <phase>process-classes</phase> 
    108             <goals> 
    109               <goal>emma</goal> 
    110             </goals> 
    111           </execution> 
    112         </executions> 
    113       </plugin> 
    114       <plugin> 
    115         <groupId>org.apache.maven.plugins</groupId> 
    116         <artifactId>maven-jar-plugin</artifactId> 
    117         <version>2.3.2</version> 
    118         <executions> 
    119           <execution> 
    120             <goals> 
    121               <goal>test-jar</goal> 
    122             </goals> 
    123           </execution> 
    124         </executions> 
    125       </plugin> 
    126     </plugins> 
    127   </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    <modelVersion>4.0.0</modelVersion> 
     7    <groupId>de.ugoe.cs.quest</groupId> 
     8    <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> 
     28    <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> 
     70        <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> 
     80            <plugin> 
     81                <groupId>org.apache.maven.plugins</groupId> 
     82                <artifactId>maven-dependency-plugin</artifactId> 
     83                <version>2.4</version> 
     84                <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> 
     102                    <execution> 
     103                        <id>get-jfc-plugin-config</id> 
     104                        <phase>process-classes</phase> 
     105                        <goals> 
     106                            <goal>unpack</goal> 
     107                        </goals> 
     108                        <configuration> 
     109                            <artifactItems> 
     110                                <artifactItem> 
     111                                    <groupId>de.ugoe.cs.quest</groupId> 
     112                                    <artifactId>quest-plugin-jfc</artifactId> 
     113                                    <version>0.0.1-SNAPSHOT</version> 
     114                                    <classifier>config</classifier> 
     115                                    <type>zip</type> 
     116                                    <outputDirectory>${basedir}/data</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            <plugin> 
     150                <artifactId>maven-clean-plugin</artifactId> 
     151                <version>2.5</version> 
     152                <configuration> 
     153                    <filesets> 
     154                        <fileset> 
     155                            <directory>${basedir}/data</directory> 
     156                        </fileset> 
     157                    </filesets> 
     158                </configuration> 
     159            </plugin> 
     160        </plugins> 
     161    </build> 
    128162</project> 
  • trunk/quest-plugin-mfc-test/pom.xml

    r621 r625  
    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-plugin-mfc-test</artifactId> 
    5   <version>0.0.1-SNAPSHOT</version> 
    6   <name>quest-plugin-jfc-test</name> 
    7   <scm> 
    8     <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc-test</url> 
    9   </scm> 
    10   <dependencies> 
    11     <dependency> 
    12         <groupId>de.ugoe.cs.quest</groupId> 
    13         <artifactId>quest-plugin-mfc</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   </dependencies> 
    24   <build> 
    25     <pluginManagement> 
    26       <plugins> 
    27         <plugin> 
    28           <groupId>org.eclipse.m2e</groupId> 
    29           <artifactId>lifecycle-mapping</artifactId> 
    30           <version>1.0.0</version> 
    31           <configuration> 
    32             <lifecycleMappingMetadata> 
    33               <pluginExecutions> 
    34                 <pluginExecution> 
    35                   <pluginExecutionFilter> 
    36                     <groupId>org.apache.maven.plugins</groupId> 
    37                     <artifactId>maven-dependency-plugin</artifactId> 
    38                     <versionRange>[1.0.0,)</versionRange> 
    39                     <goals> 
    40                       <goal>unpack</goal> 
    41                     </goals> 
    42                   </pluginExecutionFilter> 
    43                   <action> 
    44                     <ignore/> 
    45                   </action> 
    46                 </pluginExecution> 
    47                 <pluginExecution> 
    48                   <pluginExecutionFilter> 
    49                     <groupId>org.codehaus.mojo</groupId> 
    50                     <artifactId>emma-maven-plugin</artifactId> 
    51                     <versionRange>[1.0-alpha-3,)</versionRange> 
    52                     <goals> 
    53                       <goal>emma</goal> 
    54                     </goals> 
    55                   </pluginExecutionFilter> 
    56                   <action> 
    57                     <ignore/> 
    58                   </action> 
    59                 </pluginExecution> 
    60               </pluginExecutions> 
    61             </lifecycleMappingMetadata> 
    62           </configuration> 
    63         </plugin> 
    64       </plugins> 
    65     </pluginManagement> 
    66     <plugins> 
    67       <plugin> 
    68         <groupId>org.apache.maven.plugins</groupId> 
    69         <artifactId>maven-compiler-plugin</artifactId> 
    70         <version>2.3.2</version> 
    71         <configuration> 
    72           <source>1.6</source> 
    73           <target>1.6</target> 
    74         </configuration> 
    75       </plugin> 
    76       <plugin> 
    77         <groupId>org.apache.maven.plugins</groupId> 
    78         <artifactId>maven-dependency-plugin</artifactId> 
    79         <version>2.4</version> 
    80         <executions> 
    81           <execution> 
    82             <id>unpack</id> 
    83             <phase>process-classes</phase> 
    84             <goals> 
    85               <goal>unpack</goal> 
    86             </goals> 
    87             <configuration> 
    88               <artifactItems> 
    89                 <artifactItem> 
    90                   <groupId>de.ugoe.cs.quest</groupId> 
    91                   <artifactId>quest-plugin-mfc</artifactId> 
    92                   <version>0.0.1-SNAPSHOT</version> 
    93                   <outputDirectory>${project.build.directory}/classes</outputDirectory> 
    94                 </artifactItem> 
    95               </artifactItems> 
    96             </configuration> 
    97           </execution> 
    98         </executions> 
    99       </plugin> 
    100       <plugin> 
    101         <groupId>org.codehaus.mojo</groupId> 
    102         <artifactId>emma-maven-plugin</artifactId> 
    103         <version>1.0-alpha-3</version> 
    104         <inherited>true</inherited>           
    105         <executions> 
    106           <execution> 
    107             <phase>process-classes</phase> 
    108             <goals> 
    109               <goal>emma</goal> 
    110             </goals> 
    111           </execution> 
    112         </executions> 
    113       </plugin> 
    114       <plugin> 
    115         <groupId>org.apache.maven.plugins</groupId> 
    116         <artifactId>maven-jar-plugin</artifactId> 
    117         <version>2.3.2</version> 
    118         <executions> 
    119           <execution> 
    120             <goals> 
    121               <goal>test-jar</goal> 
    122             </goals> 
    123           </execution> 
    124         </executions> 
    125       </plugin> 
    126     </plugins> 
    127   </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    <modelVersion>4.0.0</modelVersion> 
     7    <groupId>de.ugoe.cs.quest</groupId> 
     8    <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> 
     14    <dependencies> 
     15        <dependency> 
     16            <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>junit</groupId> 
     23            <artifactId>junit</artifactId> 
     24            <version>4.8.1</version> 
     25            <scope>test</scope> 
     26        </dependency> 
     27    </dependencies> 
     28    <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> 
     70        <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> 
     80            <plugin> 
     81                <groupId>org.apache.maven.plugins</groupId> 
     82                <artifactId>maven-dependency-plugin</artifactId> 
     83                <version>2.4</version> 
     84                <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-mfc</artifactId> 
     96                                    <version>0.0.1-SNAPSHOT</version> 
     97                                    <outputDirectory>${project.build.directory}/classes</outputDirectory> 
     98                                </artifactItem> 
     99                            </artifactItems> 
     100                        </configuration> 
     101                    </execution> 
     102                    <execution> 
     103                        <id>get-mfc-plugin-config</id> 
     104                        <phase>process-classes</phase> 
     105                        <goals> 
     106                            <goal>unpack</goal> 
     107                        </goals> 
     108                        <configuration> 
     109                            <artifactItems> 
     110                                <artifactItem> 
     111                                    <groupId>de.ugoe.cs.quest</groupId> 
     112                                    <artifactId>quest-plugin-mfc</artifactId> 
     113                                    <version>0.0.1-SNAPSHOT</version> 
     114                                    <classifier>config</classifier> 
     115                                    <type>zip</type> 
     116                                    <outputDirectory>${basedir}/data</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            <plugin> 
     150                <artifactId>maven-clean-plugin</artifactId> 
     151                <version>2.5</version> 
     152                <configuration> 
     153                    <filesets> 
     154                        <fileset> 
     155                            <directory>${basedir}/data</directory> 
     156                        </fileset> 
     157                    </filesets> 
     158                </configuration> 
     159            </plugin> 
     160        </plugins> 
     161    </build> 
    128162</project> 
Note: See TracChangeset for help on using the changeset viewer.