Changeset 763 for trunk/quest-plugin-mfc-test
- Timestamp:
- 09/04/12 13:18:39 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-mfc-test/pom.xml
r705 r763 4 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" 5 5 > 6 <parent> 7 <groupId>de.ugoe.cs.quest</groupId> 8 <artifactId>quest-test</artifactId> 9 <version>0.0.1-SNAPSHOT</version> 10 </parent> 6 11 <modelVersion>4.0.0</modelVersion> 7 <groupId>de.ugoe.cs.quest</groupId>8 12 <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> 14 16 <dependencies> 15 17 <dependency> 16 18 <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>23 19 <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> 31 21 <scope>test</scope> 32 22 </dependency> 33 23 </dependencies> 34 24 <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 25 <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 26 <plugin> 87 27 <groupId>org.apache.maven.plugins</groupId> … … 89 29 <version>2.4</version> 90 30 <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>108 31 <execution> 109 32 <id>get-mfc-plugin-config</id> … … 117 40 <groupId>de.ugoe.cs.quest</groupId> 118 41 <artifactId>quest-plugin-mfc</artifactId> 119 <version> 0.0.1-SNAPSHOT</version>42 <version>${tested-quest-version}</version> 120 43 <classifier>config</classifier> 121 44 <type>zip</type> … … 124 47 </artifactItems> 125 48 </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>152 49 </execution> 153 50 </executions>
Note: See TracChangeset
for help on using the changeset viewer.