- Timestamp:
- 09/04/12 13:18:39 (12 years ago)
- Location:
- trunk
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-assertions-test/pom.xml
r572 r763 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-assertions-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-assertions-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> 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> 12 7 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest- core-events</artifactId>8 <artifactId>quest-test</artifactId> 14 9 <version>0.0.1-SNAPSHOT</version> 15 <scope>test</scope> 16 </dependency> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-assertions</artifactId> 20 <version>0.0.1-SNAPSHOT</version> 21 <scope>test</scope> 22 </dependency> 23 <dependency> 24 <groupId>de.ugoe.cs.quest</groupId> 25 <artifactId>quest-core-events-test</artifactId> 26 <version>0.0.1-SNAPSHOT</version> 27 <type>test-jar</type> 28 <scope>test</scope> 29 </dependency> 30 <dependency> 31 <groupId>junit</groupId> 32 <artifactId>junit</artifactId> 33 <version>4.8.1</version> 34 <scope>test</scope> 35 </dependency> 36 </dependencies> 37 <build> 38 <pluginManagement> 39 <plugins> 40 <plugin> 41 <groupId>org.eclipse.m2e</groupId> 42 <artifactId>lifecycle-mapping</artifactId> 43 <version>1.0.0</version> 44 <configuration> 45 <lifecycleMappingMetadata> 46 <pluginExecutions> 47 <pluginExecution> 48 <pluginExecutionFilter> 49 <groupId>org.apache.maven.plugins</groupId> 50 <artifactId>maven-dependency-plugin</artifactId> 51 <versionRange>[1.0.0,)</versionRange> 52 <goals> 53 <goal>unpack</goal> 54 </goals> 55 </pluginExecutionFilter> 56 <action> 57 <ignore/> 58 </action> 59 </pluginExecution> 60 <pluginExecution> 61 <pluginExecutionFilter> 62 <groupId>org.codehaus.mojo</groupId> 63 <artifactId>emma-maven-plugin</artifactId> 64 <versionRange>[1.0-alpha-3,)</versionRange> 65 <goals> 66 <goal>emma</goal> 67 </goals> 68 </pluginExecutionFilter> 69 <action> 70 <ignore/> 71 </action> 72 </pluginExecution> 73 </pluginExecutions> 74 </lifecycleMappingMetadata> 75 </configuration> 76 </plugin> 77 </plugins> 78 </pluginManagement> 79 <plugins> 80 <plugin> 81 <groupId>org.apache.maven.plugins</groupId> 82 <artifactId>maven-compiler-plugin</artifactId> 83 <version>2.3.2</version> 84 <configuration> 85 <source>1.6</source> 86 <target>1.6</target> 87 </configuration> 88 </plugin> 89 <plugin> 90 <groupId>org.apache.maven.plugins</groupId> 91 <artifactId>maven-dependency-plugin</artifactId> 92 <version>2.4</version> 93 <executions> 94 <execution> 95 <id>unpack</id> 96 <phase>process-classes</phase> 97 <goals> 98 <goal>unpack</goal> 99 </goals> 100 <configuration> 101 <artifactItems> 102 <artifactItem> 103 <groupId>de.ugoe.cs.quest</groupId> 104 <artifactId>quest-core-assertions</artifactId> 105 <version>0.0.1-SNAPSHOT</version> 106 <outputDirectory>${project.build.directory}/classes</outputDirectory> 107 </artifactItem> 108 </artifactItems> 109 </configuration> 110 </execution> 111 </executions> 112 </plugin> 113 <plugin> 114 <groupId>org.apache.maven.plugins</groupId> 115 <artifactId>maven-jar-plugin</artifactId> 116 <version>2.3.2</version> 117 <executions> 118 <execution> 119 <goals> 120 <goal>test-jar</goal> 121 </goals> 122 </execution> 123 </executions> 124 </plugin> 125 </plugins> 126 </build> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>quest-core-assertions-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-assertions</tested-artifactId> 15 </properties> 16 <dependencies> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-events</artifactId> 20 <version>${tested-quest-version}</version> 21 <scope>test</scope> 22 </dependency> 23 </dependencies> 127 24 </project> -
trunk/quest-core-coverage-test/pom.xml
r549 r763 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-coverage-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-coverage-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> 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> 12 7 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest- core-events-test</artifactId>8 <artifactId>quest-test</artifactId> 14 9 <version>0.0.1-SNAPSHOT</version> 15 <type>test-jar</type> 16 <scope>test</scope> 17 </dependency> 18 <dependency> 19 <groupId>de.ugoe.cs.quest</groupId> 20 <artifactId>quest-core-usageprofiles-test</artifactId> 21 <version>0.0.1-SNAPSHOT</version> 22 <type>test-jar</type> 23 <scope>test</scope> 24 </dependency> 25 <dependency> 26 <groupId>de.ugoe.cs.quest</groupId> 27 <artifactId>quest-core-coverage</artifactId> 28 <version>0.0.1-SNAPSHOT</version> 29 <scope>test</scope> 30 </dependency> 31 <dependency> 32 <groupId>junit</groupId> 33 <artifactId>junit</artifactId> 34 <version>4.8.1</version> 35 <scope>test</scope> 36 </dependency> 37 <!-- <dependency> 38 <groupId>junit-addons</groupId> 39 <artifactId>junit-addons</artifactId> 40 <version>1.4</version> 41 </dependency> 42 <dependency> 43 <groupId>nl.jqno.equalsverifier</groupId> 44 <artifactId>equalsverifier</artifactId> 45 <version>1.1.3</version> 46 </dependency>--> 47 </dependencies> 48 <build> 49 <pluginManagement> 50 <plugins> 51 <plugin> 52 <groupId>org.eclipse.m2e</groupId> 53 <artifactId>lifecycle-mapping</artifactId> 54 <version>1.0.0</version> 55 <configuration> 56 <lifecycleMappingMetadata> 57 <pluginExecutions> 58 <pluginExecution> 59 <pluginExecutionFilter> 60 <groupId>org.apache.maven.plugins</groupId> 61 <artifactId>maven-dependency-plugin</artifactId> 62 <versionRange>[1.0.0,)</versionRange> 63 <goals> 64 <goal>unpack</goal> 65 </goals> 66 </pluginExecutionFilter> 67 <action> 68 <ignore/> 69 </action> 70 </pluginExecution> 71 <pluginExecution> 72 <pluginExecutionFilter> 73 <groupId>org.codehaus.mojo</groupId> 74 <artifactId>emma-maven-plugin</artifactId> 75 <versionRange>[1.0-alpha-3,)</versionRange> 76 <goals> 77 <goal>emma</goal> 78 </goals> 79 </pluginExecutionFilter> 80 <action> 81 <ignore/> 82 </action> 83 </pluginExecution> 84 </pluginExecutions> 85 </lifecycleMappingMetadata> 86 </configuration> 87 </plugin> 88 </plugins> 89 </pluginManagement> 90 <plugins> 91 <plugin> 92 <groupId>org.apache.maven.plugins</groupId> 93 <artifactId>maven-compiler-plugin</artifactId> 94 <version>2.3.2</version> 95 <configuration> 96 <source>1.6</source> 97 <target>1.6</target> 98 </configuration> 99 </plugin> 100 <plugin> 101 <groupId>org.apache.maven.plugins</groupId> 102 <artifactId>maven-dependency-plugin</artifactId> 103 <version>2.4</version> 104 <executions> 105 <execution> 106 <id>unpack</id> 107 <phase>process-classes</phase> 108 <goals> 109 <goal>unpack</goal> 110 </goals> 111 <configuration> 112 <artifactItems> 113 <artifactItem> 114 <groupId>de.ugoe.cs.quest</groupId> 115 <artifactId>quest-core-coverage</artifactId> 116 <version>0.0.1-SNAPSHOT</version> 117 <outputDirectory>${project.build.directory}/classes</outputDirectory> 118 </artifactItem> 119 </artifactItems> 120 </configuration> 121 </execution> 122 </executions> 123 </plugin> 124 <plugin> 125 <groupId>org.codehaus.mojo</groupId> 126 <artifactId>emma-maven-plugin</artifactId> 127 <version>1.0-alpha-3</version> 128 <inherited>true</inherited> 129 <executions> 130 <execution> 131 <phase>process-classes</phase> 132 <goals> 133 <goal>emma</goal> 134 </goals> 135 </execution> 136 </executions> 137 </plugin> 138 <plugin> 139 <groupId>org.apache.maven.plugins</groupId> 140 <artifactId>maven-jar-plugin</artifactId> 141 <version>2.3.2</version> 142 <executions> 143 <execution> 144 <goals> 145 <goal>test-jar</goal> 146 </goals> 147 </execution> 148 </executions> 149 </plugin> 150 </plugins> 151 </build> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>quest-core-coverage-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-coverage</tested-artifactId> 15 </properties> 16 <dependencies> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-usageprofiles</artifactId> 20 <version>${tested-quest-version}</version> 21 <scope>test</scope> 22 </dependency> 23 </dependencies> 152 24 </project> -
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> 151 34 </project> -
trunk/quest-core-tasktrees-test/pom.xml
r697 r763 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-tasktrees-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-tasktrees-test</name> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-tasktrees-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 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> 12 7 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest- core-tasktrees</artifactId>8 <artifactId>quest-test</artifactId> 14 9 <version>0.0.1-SNAPSHOT</version> 15 <scope>test</scope> 16 </dependency> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-test-utils</artifactId> 20 <version>0.0.1-SNAPSHOT</version> 21 <scope>test</scope> 22 </dependency> 23 <dependency> 24 <groupId>junit</groupId> 25 <artifactId>junit</artifactId> 26 <version>4.8.1</version> 27 <scope>test</scope> 28 </dependency> 29 </dependencies> 30 <build> 31 <pluginManagement> 32 <plugins> 33 <plugin> 34 <groupId>org.eclipse.m2e</groupId> 35 <artifactId>lifecycle-mapping</artifactId> 36 <version>1.0.0</version> 37 <configuration> 38 <lifecycleMappingMetadata> 39 <pluginExecutions> 40 <pluginExecution> 41 <pluginExecutionFilter> 42 <groupId>org.apache.maven.plugins</groupId> 43 <artifactId>maven-dependency-plugin</artifactId> 44 <versionRange>[1.0.0,)</versionRange> 45 <goals> 46 <goal>unpack</goal> 47 </goals> 48 </pluginExecutionFilter> 49 <action> 50 <ignore/> 51 </action> 52 </pluginExecution> 53 54 </pluginExecutions> 55 </lifecycleMappingMetadata> 56 </configuration> 57 </plugin> 58 </plugins> 59 </pluginManagement> 60 <plugins> 61 <plugin> 62 <groupId>org.apache.maven.plugins</groupId> 63 <artifactId>maven-compiler-plugin</artifactId> 64 <version>2.3.2</version> 65 <configuration> 66 <source>1.6</source> 67 <target>1.6</target> 68 </configuration> 69 </plugin> 70 <plugin> 71 <groupId>org.apache.maven.plugins</groupId> 72 <artifactId>maven-dependency-plugin</artifactId> 73 <version>2.4</version> 74 <executions> 75 <execution> 76 <id>unpack</id> 77 <phase>process-classes</phase> 78 <goals> 79 <goal>unpack</goal> 80 </goals> 81 <configuration> 82 <artifactItems> 83 <artifactItem> 84 <groupId>de.ugoe.cs.quest</groupId> 85 <artifactId>quest-core-tasktrees</artifactId> 86 <version>0.0.1-SNAPSHOT</version> 87 <outputDirectory>${project.build.directory}/classes</outputDirectory> 88 </artifactItem> 89 </artifactItems> 90 </configuration> 91 </execution> 92 </executions> 93 </plugin> 94 <plugin> 95 <groupId>org.apache.maven.plugins</groupId> 96 <artifactId>maven-jar-plugin</artifactId> 97 <version>2.3.2</version> 98 <executions> 99 <execution> 100 <goals> 101 <goal>test-jar</goal> 102 </goals> 103 </execution> 104 </executions> 105 </plugin> 106 </plugins> 107 </build> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>quest-core-tasktrees-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-tasktrees</tested-artifactId> 15 </properties> 108 16 </project> -
trunk/quest-core-usability-test/pom.xml
r700 r763 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-usability-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-usability-test</name> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usability-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 12 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest-core-usability</artifactId> 14 <version>0.0.1-SNAPSHOT</version> 15 <scope>test</scope> 16 </dependency> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-tasktrees-test</artifactId> 20 <version>0.0.1-SNAPSHOT</version> 21 <type>test-jar</type> 22 <scope>test</scope> 23 </dependency> 24 <dependency> 25 <groupId>de.ugoe.cs.quest</groupId> 26 <artifactId>quest-test-utils</artifactId> 27 <version>0.0.1-SNAPSHOT</version> 28 <scope>test</scope> 29 </dependency> 30 <dependency> 31 <groupId>junit</groupId> 32 <artifactId>junit</artifactId> 33 <version>4.8.1</version> 34 <scope>test</scope> 35 </dependency> 36 </dependencies> 37 <build> 38 <pluginManagement> 39 <plugins> 40 <plugin> 41 <groupId>org.eclipse.m2e</groupId> 42 <artifactId>lifecycle-mapping</artifactId> 43 <version>1.0.0</version> 44 <configuration> 45 <lifecycleMappingMetadata> 46 <pluginExecutions> 47 <pluginExecution> 48 <pluginExecutionFilter> 49 <groupId>org.apache.maven.plugins</groupId> 50 <artifactId>maven-dependency-plugin</artifactId> 51 <versionRange>[1.0.0,)</versionRange> 52 <goals> 53 <goal>unpack</goal> 54 </goals> 55 </pluginExecutionFilter> 56 <action> 57 <ignore/> 58 </action> 59 </pluginExecution> 60 <pluginExecution> 61 <pluginExecutionFilter> 62 <groupId>org.codehaus.mojo</groupId> 63 <artifactId>emma-maven-plugin</artifactId> 64 <versionRange>[1.0-alpha-3,)</versionRange> 65 <goals> 66 <goal>emma</goal> 67 </goals> 68 </pluginExecutionFilter> 69 <action> 70 <ignore/> 71 </action> 72 </pluginExecution> 73 </pluginExecutions> 74 </lifecycleMappingMetadata> 75 </configuration> 76 </plugin> 77 </plugins> 78 </pluginManagement> 79 <plugins> 80 <plugin> 81 <groupId>org.apache.maven.plugins</groupId> 82 <artifactId>maven-compiler-plugin</artifactId> 83 <version>2.3.2</version> 84 <configuration> 85 <source>1.6</source> 86 <target>1.6</target> 87 </configuration> 88 </plugin> 89 <plugin> 90 <groupId>org.apache.maven.plugins</groupId> 91 <artifactId>maven-dependency-plugin</artifactId> 92 <version>2.4</version> 93 <executions> 94 <execution> 95 <id>unpack</id> 96 <phase>process-classes</phase> 97 <goals> 98 <goal>unpack</goal> 99 </goals> 100 <configuration> 101 <artifactItems> 102 <artifactItem> 103 <groupId>de.ugoe.cs.quest</groupId> 104 <artifactId>quest-core-usability</artifactId> 105 <version>0.0.1-SNAPSHOT</version> 106 <outputDirectory>${project.build.directory}/classes</outputDirectory> 107 </artifactItem> 108 </artifactItems> 109 </configuration> 110 </execution> 111 </executions> 112 </plugin> 113 <plugin> 114 <groupId>org.codehaus.mojo</groupId> 115 <artifactId>emma-maven-plugin</artifactId> 116 <version>1.0-alpha-3</version> 117 <inherited>true</inherited> 118 <executions> 119 <execution> 120 <phase>process-classes</phase> 121 <goals> 122 <goal>emma</goal> 123 </goals> 124 </execution> 125 </executions> 126 </plugin> 127 <plugin> 128 <groupId>org.apache.maven.plugins</groupId> 129 <artifactId>maven-jar-plugin</artifactId> 130 <version>2.3.2</version> 131 <executions> 132 <execution> 133 <goals> 134 <goal>test-jar</goal> 135 </goals> 136 </execution> 137 </executions> 138 </plugin> 139 </plugins> 140 </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-usability-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-usability</tested-artifactId> 15 </properties> 141 16 </project> -
trunk/quest-core-usageprofiles-test/pom.xml
r518 r763 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-usageprofiles-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-core-usageprofiles-test</name> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usageprofiles-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 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> 12 7 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest- core-events</artifactId>8 <artifactId>quest-test</artifactId> 14 9 <version>0.0.1-SNAPSHOT</version> 15 <scope>test</scope> 16 </dependency> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-usageprofiles</artifactId> 20 <version>0.0.1-SNAPSHOT</version> 21 <scope>test</scope> 22 </dependency> 23 <dependency> 24 <groupId>junit</groupId> 25 <artifactId>junit</artifactId> 26 <version>4.8.1</version> 27 <scope>test</scope> 28 </dependency> 29 <dependency> 30 <groupId>junit-addons</groupId> 31 <artifactId>junit-addons</artifactId> 32 <version>1.4</version> 33 </dependency> 34 </dependencies> 35 <build> 36 <pluginManagement> 37 <plugins> 38 <plugin> 39 <groupId>org.eclipse.m2e</groupId> 40 <artifactId>lifecycle-mapping</artifactId> 41 <version>1.0.0</version> 42 <configuration> 43 <lifecycleMappingMetadata> 44 <pluginExecutions> 45 <pluginExecution> 46 <pluginExecutionFilter> 47 <groupId>org.apache.maven.plugins</groupId> 48 <artifactId>maven-dependency-plugin</artifactId> 49 <versionRange>[1.0.0,)</versionRange> 50 <goals> 51 <goal>unpack</goal> 52 </goals> 53 </pluginExecutionFilter> 54 <action> 55 <ignore/> 56 </action> 57 </pluginExecution> 58 <pluginExecution> 59 <pluginExecutionFilter> 60 <groupId>org.codehaus.mojo</groupId> 61 <artifactId>emma-maven-plugin</artifactId> 62 <versionRange>[1.0-alpha-3,)</versionRange> 63 <goals> 64 <goal>emma</goal> 65 </goals> 66 </pluginExecutionFilter> 67 <action> 68 <ignore/> 69 </action> 70 </pluginExecution> 71 </pluginExecutions> 72 </lifecycleMappingMetadata> 73 </configuration> 74 </plugin> 75 </plugins> 76 </pluginManagement> 77 <plugins> 78 <plugin> 79 <groupId>org.apache.maven.plugins</groupId> 80 <artifactId>maven-compiler-plugin</artifactId> 81 <version>2.3.2</version> 82 <configuration> 83 <source>1.6</source> 84 <target>1.6</target> 85 </configuration> 86 </plugin> 87 <plugin> 88 <groupId>org.apache.maven.plugins</groupId> 89 <artifactId>maven-dependency-plugin</artifactId> 90 <version>2.4</version> 91 <executions> 92 <execution> 93 <id>unpack</id> 94 <phase>process-classes</phase> 95 <goals> 96 <goal>unpack</goal> 97 </goals> 98 <configuration> 99 <artifactItems> 100 <artifactItem> 101 <groupId>de.ugoe.cs.quest</groupId> 102 <artifactId>quest-core-usageprofiles</artifactId> 103 <version>0.0.1-SNAPSHOT</version> 104 <outputDirectory>${project.build.directory}/classes</outputDirectory> 105 </artifactItem> 106 </artifactItems> 107 </configuration> 108 </execution> 109 </executions> 110 </plugin> 111 <plugin> 112 <groupId>org.codehaus.mojo</groupId> 113 <artifactId>emma-maven-plugin</artifactId> 114 <version>1.0-alpha-3</version> 115 <inherited>true</inherited> 116 <executions> 117 <execution> 118 <phase>process-classes</phase> 119 <goals> 120 <goal>emma</goal> 121 </goals> 122 </execution> 123 </executions> 124 </plugin> 125 <plugin> 126 <groupId>org.apache.maven.plugins</groupId> 127 <artifactId>maven-jar-plugin</artifactId> 128 <version>2.3.2</version> 129 <executions> 130 <execution> 131 <goals> 132 <goal>test-jar</goal> 133 </goals> 134 </execution> 135 </executions> 136 </plugin> 137 </plugins> 138 </build> 10 </parent> 11 <modelVersion>4.0.0</modelVersion> 12 <artifactId>quest-core-usageprofiles-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-core-usageprofiles</tested-artifactId> 15 </properties> 16 <dependencies> 17 <dependency> 18 <groupId>de.ugoe.cs.quest</groupId> 19 <artifactId>quest-core-events</artifactId> 20 <version>${tested-quest-version}</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 <scope>test</scope> 28 </dependency> 29 </dependencies> 139 30 </project> -
trunk/quest-misc-test/pom.xml
r471 r763 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-misc-test</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <name>quest-misc-test</name> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-misc-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 12 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest-misc</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-misc</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 <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-misc-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-misc</tested-artifactId> 15 </properties> 128 16 </project> -
trunk/quest-plugin-core-test/pom.xml
r511 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-plugin-core-test</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 <name>quest-plugin-core-test</name> 8 <scm> 9 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-core-test</url> 10 </scm> 11 <dependencies> 12 <dependency> 13 <groupId>de.ugoe.cs.quest</groupId> 14 <artifactId>quest-plugin-core</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 </dependencies> 30 <build> 31 <pluginManagement> 32 <plugins> 33 <plugin> 34 <groupId>org.eclipse.m2e</groupId> 35 <artifactId>lifecycle-mapping</artifactId> 36 <version>1.0.0</version> 37 <configuration> 38 <lifecycleMappingMetadata> 39 <pluginExecutions> 40 <pluginExecution> 41 <pluginExecutionFilter> 42 <groupId>org.apache.maven.plugins</groupId> 43 <artifactId>maven-dependency-plugin</artifactId> 44 <versionRange>[1.0.0,)</versionRange> 45 <goals> 46 <goal>unpack</goal> 47 </goals> 48 </pluginExecutionFilter> 49 <action> 50 <ignore/> 51 </action> 52 </pluginExecution> 53 <pluginExecution> 54 <pluginExecutionFilter> 55 <groupId>org.codehaus.mojo</groupId> 56 <artifactId>emma-maven-plugin</artifactId> 57 <versionRange>[1.0-alpha-3,)</versionRange> 58 <goals> 59 <goal>emma</goal> 60 </goals> 61 </pluginExecutionFilter> 62 <action> 63 <ignore/> 64 </action> 65 </pluginExecution> 66 </pluginExecutions> 67 </lifecycleMappingMetadata> 68 </configuration> 69 </plugin> 70 </plugins> 71 </pluginManagement> 72 <plugins> 73 <plugin> 74 <groupId>org.apache.maven.plugins</groupId> 75 <artifactId>maven-compiler-plugin</artifactId> 76 <version>2.3.2</version> 77 <configuration> 78 <source>1.6</source> 79 <target>1.6</target> 80 </configuration> 81 </plugin> 82 <plugin> 83 <groupId>org.apache.maven.plugins</groupId> 84 <artifactId>maven-dependency-plugin</artifactId> 85 <version>2.4</version> 86 <executions> 87 <execution> 88 <id>unpack</id> 89 <phase>process-classes</phase> 90 <goals> 91 <goal>unpack</goal> 92 </goals> 93 <configuration> 94 <artifactItems> 95 <artifactItem> 96 <groupId>de.ugoe.cs.quest</groupId> 97 <artifactId>quest-plugin-core</artifactId> 98 <version>0.0.1-SNAPSHOT</version> 99 <outputDirectory>${project.build.directory}/classes</outputDirectory> 100 </artifactItem> 101 </artifactItems> 102 </configuration> 103 </execution> 104 </executions> 105 </plugin> 106 <plugin> 107 <groupId>org.codehaus.mojo</groupId> 108 <artifactId>emma-maven-plugin</artifactId> 109 <version>1.0-alpha-3</version> 110 <inherited>true</inherited> 111 <executions> 112 <execution> 113 <phase>process-classes</phase> 114 <goals> 115 <goal>emma</goal> 116 </goals> 117 </execution> 118 </executions> 119 </plugin> 120 <plugin> 121 <groupId>org.apache.maven.plugins</groupId> 122 <artifactId>maven-jar-plugin</artifactId> 123 <version>2.3.2</version> 124 <executions> 125 <execution> 126 <goals> 127 <goal>test-jar</goal> 128 </goals> 129 </execution> 130 </executions> 131 </plugin> 132 </plugins> 133 </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-plugin-core-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-plugin-core</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 </dependencies> 134 23 </project> -
trunk/quest-plugin-jfc-test/pom.xml
r625 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-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> 28 16 <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 17 <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 18 <plugin> 81 19 <groupId>org.apache.maven.plugins</groupId> … … 83 21 <version>2.4</version> 84 22 <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 23 <execution> 103 24 <id>get-jfc-plugin-config</id> … … 111 32 <groupId>de.ugoe.cs.quest</groupId> 112 33 <artifactId>quest-plugin-jfc</artifactId> 113 <version> 0.0.1-SNAPSHOT</version>34 <version>${tested-quest-version}</version> 114 35 <classifier>config</classifier> 115 36 <type>zip</type> … … 118 39 </artifactItems> 119 40 </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 41 </execution> 147 42 </executions> -
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> -
trunk/quest-test-utils/pom.xml
r703 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</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-test-utils</artifactId> 9 <version>0.0.1-SNAPSHOT</version>10 13 <name>quest-test-utils</name> 11 14 <scm> 12 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-test-utils</url>15 <url>${quest-scm-trunk-dir}/quest-test-utils</url> 13 16 </scm> 14 17 <dependencies> … … 21 24 <groupId>de.ugoe.cs.quest</groupId> 22 25 <artifactId>quest-core-events</artifactId> 23 <version>0.0.1-SNAPSHOT</version> 26 <version>${parent.version}</version> 27 </dependency> 28 <dependency> 29 <groupId>de.ugoe.cs.quest</groupId> 30 <artifactId>quest-core-usageprofiles</artifactId> 31 <version>${parent.version}</version> 24 32 </dependency> 25 33 <dependency> … … 29 37 </dependency> 30 38 </dependencies> 31 <build>32 <plugins>33 <plugin>34 <artifactId>maven-compiler-plugin</artifactId>35 <version>2.3.2</version>36 <configuration>37 <source>1.6</source>38 <target>1.6</target>39 </configuration>40 </plugin>41 </plugins>42 </build>43 39 </project> -
trunk/quest-test/pom.xml
r761 r763 69 69 <plugins> 70 70 <plugin> 71 <groupId>org.apache.maven.plugins</groupId>72 <artifactId>maven-dependency-plugin</artifactId>73 <version>2.4</version>74 <executions>75 <execution>76 <id>unpack</id>77 <phase>process-classes</phase>78 <goals>79 <goal>unpack</goal>80 </goals>81 <configuration>82 <artifactItems>83 <artifactItem>84 <groupId>${project.groupId}</groupId>85 <artifactId>${tested-artifactId}</artifactId>86 <version>${tested-quest-version}</version>87 <outputDirectory>${project.build.directory}/classes</outputDirectory>88 </artifactItem>89 </artifactItems>90 </configuration>91 </execution>92 </executions>93 </plugin>94 <plugin>95 71 <artifactId>maven-compiler-plugin</artifactId> 96 72 <version>2.3.2</version> … … 102 78 </plugins> 103 79 </build> 80 <profiles> 81 <profile> 82 <id>test execution</id> 83 <activation> 84 <file> 85 <exists>src</exists> 86 </file> 87 </activation> 88 <build> 89 <plugins> 90 <plugin> 91 <groupId>org.apache.maven.plugins</groupId> 92 <artifactId>maven-dependency-plugin</artifactId> 93 <version>2.4</version> 94 <executions> 95 <execution> 96 <id>unpack</id> 97 <phase>process-classes</phase> 98 <goals> 99 <goal>unpack</goal> 100 </goals> 101 <configuration> 102 <artifactItems> 103 <artifactItem> 104 <groupId>${project.groupId}</groupId> 105 <artifactId>${tested-artifactId}</artifactId> 106 <version>${tested-quest-version}</version> 107 <outputDirectory>${project.build.directory}/classes</outputDirectory> 108 </artifactItem> 109 </artifactItems> 110 </configuration> 111 </execution> 112 </executions> 113 </plugin> 114 </plugins> 115 </build> 116 </profile> 117 </profiles> 104 118 </project> -
trunk/quest-ui-core-test/pom.xml
r530 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>quest-ui-core-test</groupId> 5 <artifactId>quest-ui-core-test</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 <scm> 8 <url>https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core-test</url> 9 </scm> 10 <dependencies> 11 <dependency> 12 <groupId>de.ugoe.cs.quest</groupId> 13 <artifactId>quest-ui-core</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>org.mockito</groupId> 30 <artifactId>mockito-core</artifactId> 31 <version>1.9.0</version> 32 <scope>test</scope> 33 </dependency> 34 </dependencies> 35 <build> 36 <pluginManagement> 37 <plugins> 38 <plugin> 39 <groupId>org.eclipse.m2e</groupId> 40 <artifactId>lifecycle-mapping</artifactId> 41 <version>1.0.0</version> 42 <configuration> 43 <lifecycleMappingMetadata> 44 <pluginExecutions> 45 <pluginExecution> 46 <pluginExecutionFilter> 47 <groupId>org.apache.maven.plugins</groupId> 48 <artifactId>maven-dependency-plugin</artifactId> 49 <versionRange>[1.0.0,)</versionRange> 50 <goals> 51 <goal>unpack</goal> 52 </goals> 53 </pluginExecutionFilter> 54 <action> 55 <ignore /> 56 </action> 57 </pluginExecution> 58 <pluginExecution> 59 <pluginExecutionFilter> 60 <groupId>org.codehaus.mojo</groupId> 61 <artifactId>emma-maven-plugin</artifactId> 62 <versionRange>[1.0-alpha-3,)</versionRange> 63 <goals> 64 <goal>emma</goal> 65 </goals> 66 </pluginExecutionFilter> 67 <action> 68 <ignore /> 69 </action> 70 </pluginExecution> 71 </pluginExecutions> 72 </lifecycleMappingMetadata> 73 </configuration> 74 </plugin> 75 </plugins> 76 </pluginManagement> 77 <plugins> 78 <plugin> 79 <groupId>org.apache.maven.plugins</groupId> 80 <artifactId>maven-compiler-plugin</artifactId> 81 <version>2.3.2</version> 82 <configuration> 83 <source>1.6</source> 84 <target>1.6</target> 85 </configuration> 86 </plugin> 87 <plugin> 88 <groupId>org.apache.maven.plugins</groupId> 89 <artifactId>maven-dependency-plugin</artifactId> 90 <version>2.4</version> 91 <executions> 92 <execution> 93 <id>unpack</id> 94 <phase>process-classes</phase> 95 <goals> 96 <goal>unpack</goal> 97 </goals> 98 <configuration> 99 <artifactItems> 100 <artifactItem> 101 <groupId>de.ugoe.cs.quest</groupId> 102 <artifactId>quest-ui-core</artifactId> 103 <version>0.0.1-SNAPSHOT</version> 104 <outputDirectory>${project.build.directory}/classes</outputDirectory> 105 </artifactItem> 106 </artifactItems> 107 </configuration> 108 </execution> 109 </executions> 110 </plugin> 111 <plugin> 112 <groupId>org.codehaus.mojo</groupId> 113 <artifactId>emma-maven-plugin</artifactId> 114 <version>1.0-alpha-3</version> 115 <inherited>true</inherited> 116 <executions> 117 <execution> 118 <phase>process-classes</phase> 119 <goals> 120 <goal>emma</goal> 121 </goals> 122 </execution> 123 </executions> 124 </plugin> 125 <plugin> 126 <groupId>org.apache.maven.plugins</groupId> 127 <artifactId>maven-jar-plugin</artifactId> 128 <version>2.3.2</version> 129 <executions> 130 <execution> 131 <goals> 132 <goal>test-jar</goal> 133 </goals> 134 </execution> 135 </executions> 136 </plugin> 137 </plugins> 138 </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-ui-core-test</artifactId> 13 <properties> 14 <tested-artifactId>quest-ui-core</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>org.mockito</groupId> 24 <artifactId>mockito-core</artifactId> 25 <version>1.9.0</version> 26 <scope>test</scope> 27 </dependency> 28 </dependencies> 139 29 </project>
Note: See TracChangeset
for help on using the changeset viewer.