Changeset 757
- Timestamp:
- 09/04/12 10:39:27 (12 years ago)
- Location:
- trunk
- Files:
-
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/java-utils/pom.xml
r753 r757 33 33 </plugins> 34 34 </build> 35 <reporting>36 <plugins>37 <plugin>38 <groupId>org.apache.maven.plugins</groupId>39 <artifactId>maven-javadoc-plugin</artifactId>40 </plugin>41 </plugins>42 </reporting>43 35 </project> -
trunk/quest-core-assertions/pom.xml
r518 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-core-assertions</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-core-assertions</name> 7 10 <scm> 8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-assertions</url>11 <url>${quest-scm-trunk-dir}/quest-core-assertions</url> 9 12 </scm> 10 13 <dependencies> … … 12 15 <groupId>de.ugoe.cs.quest</groupId> 13 16 <artifactId>quest-core-events</artifactId> 14 <version> 0.0.1-SNAPSHOT</version>17 <version>${parent.version}</version> 15 18 </dependency> 16 19 </dependencies> 17 <build>18 <plugins>19 <plugin>20 <artifactId>maven-compiler-plugin</artifactId>21 <version>2.3.2</version>22 <configuration>23 <source>1.6</source>24 <target>1.6</target>25 </configuration>26 </plugin>27 </plugins>28 </build>29 20 </project> -
trunk/quest-core-coverage/pom.xml
r518 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-core-coverage</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-core-coverage</name> 7 10 <scm> 8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-coverage</url>11 <url>${quest-scm-trunk-dir}/quest-core-coverage</url> 9 12 </scm> 10 13 <dependencies> … … 12 15 <groupId>de.ugoe.cs.quest</groupId> 13 16 <artifactId>quest-core-events</artifactId> 14 <version> 0.0.1-SNAPSHOT</version>17 <version>${parent.version}</version> 15 18 </dependency> 16 19 <dependency> 17 20 <groupId>de.ugoe.cs.quest</groupId> 18 21 <artifactId>quest-core-usageprofiles</artifactId> 19 <version> 0.0.1-SNAPSHOT</version>22 <version>${parent.version}</version> 20 23 </dependency> 21 24 </dependencies> 22 <build>23 <plugins>24 <plugin>25 <artifactId>maven-compiler-plugin</artifactId>26 <version>2.3.2</version>27 <configuration>28 <source>1.6</source>29 <target>1.6</target>30 </configuration>31 </plugin>32 </plugins>33 </build>34 25 </project> -
trunk/quest-core-events/pom.xml
r546 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-core-events</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-core-events</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-events</url>12 <url>${quest-scm-trunk-dir}/quest-core-events</url> 10 13 </scm> 11 14 <dependencies> … … 18 21 <groupId>de.ugoe.cs.quest</groupId> 19 22 <artifactId>quest-misc</artifactId> 20 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 21 24 </dependency> 22 25 </dependencies> 23 <build>24 <plugins>25 <plugin>26 <artifactId>maven-compiler-plugin</artifactId>27 <version>2.3.2</version>28 <configuration>29 <source>1.6</source>30 <target>1.6</target>31 </configuration>32 </plugin>33 </plugins>34 </build>35 26 </project> -
trunk/quest-core-tasktrees/pom.xml
r557 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-core-tasktrees</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-core-tasktrees</name> 7 10 <scm> 8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-tasktrees</url>11 <url>${quest-scm-trunk-dir}/quest-core-tasktrees</url> 9 12 </scm> 10 13 <dependencies> … … 12 15 <groupId>de.ugoe.cs.quest</groupId> 13 16 <artifactId>quest-core-events</artifactId> 14 <version> 0.0.1-SNAPSHOT</version>17 <version>${parent.version}</version> 15 18 </dependency> 16 19 </dependencies> 17 <distributionManagement>18 <snapshotRepository>19 <id>quest-snapshots</id>20 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>21 </snapshotRepository>22 </distributionManagement>23 <build>24 <plugins>25 <plugin>26 <artifactId>maven-compiler-plugin</artifactId>27 <version>2.3.2</version>28 <configuration>29 <source>1.6</source>30 <target>1.6</target>31 </configuration>32 </plugin>33 </plugins>34 </build>35 20 </project> -
trunk/quest-core-testgeneration/pom.xml
r523 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-core-testgeneration</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-core-testgeneration</name> 7 10 <scm> 8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-testgeneration</url>11 <url>${quest-scm-trunk-dir}/quest-core-testgeneration</url> 9 12 </scm> 10 13 <dependencies> … … 12 15 <groupId>de.ugoe.cs.quest</groupId> 13 16 <artifactId>quest-core-events</artifactId> 14 <version> 0.0.1-SNAPSHOT</version>17 <version>${parent.version}</version> 15 18 </dependency> 16 19 <dependency> 17 20 <groupId>de.ugoe.cs.quest</groupId> 18 21 <artifactId>quest-core-usageprofiles</artifactId> 19 <version> 0.0.1-SNAPSHOT</version>22 <version>${parent.version}</version> 20 23 </dependency> 21 24 <dependency> 22 25 <groupId>de.ugoe.cs.quest</groupId> 23 26 <artifactId>quest-core-coverage</artifactId> 24 <version> 0.0.1-SNAPSHOT</version>27 <version>${parent.version}</version> 25 28 </dependency> 26 29 </dependencies> 27 <build>28 <plugins>29 <plugin>30 <artifactId>maven-compiler-plugin</artifactId>31 <version>2.3.2</version>32 <configuration>33 <source>1.6</source>34 <target>1.6</target>35 </configuration>36 </plugin>37 </plugins>38 </build>39 30 </project> -
trunk/quest-core-usability/pom.xml
r502 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-core-usability</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-core-usability</name> 7 10 <scm> 8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usability</url>11 <url>${quest-scm-trunk-dir}/quest-core-usability</url> 9 12 </scm> 10 13 <dependencies> … … 12 15 <groupId>de.ugoe.cs.quest</groupId> 13 16 <artifactId>quest-core-tasktrees</artifactId> 14 <version> 0.0.1-SNAPSHOT</version>17 <version>${parent.version}</version> 15 18 </dependency> 16 19 </dependencies> 17 <distributionManagement>18 <snapshotRepository>19 <id>quest-snapshots</id>20 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>21 </snapshotRepository>22 </distributionManagement>23 20 <build> 24 21 <plugins> … … 38 35 </executions> 39 36 </plugin> 40 <plugin>41 <artifactId>maven-compiler-plugin</artifactId>42 <version>2.5.1</version>43 <configuration>44 <source>1.6</source>45 <target>1.6</target>46 </configuration>47 </plugin>48 37 </plugins> 49 38 </build> -
trunk/quest-core-usageprofiles/pom.xml
r548 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-core-usageprofiles</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-core-usageprofiles</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-core-usageprofiles</url>12 <url>${quest-scm-trunk-dir}/quest-core-usageprofiles</url> 10 13 </scm> 11 14 <repositories> … … 19 22 <groupId>de.ugoe.cs.quest</groupId> 20 23 <artifactId>quest-core-events</artifactId> 21 <version> 0.0.1-SNAPSHOT</version>24 <version>${parent.version}</version> 22 25 </dependency> 23 26 <dependency> … … 37 40 </dependency> 38 41 </dependencies> 39 <build>40 <plugins>41 <plugin>42 <artifactId>maven-compiler-plugin</artifactId>43 <version>2.3.2</version>44 <configuration>45 <source>1.6</source>46 <target>1.6</target>47 </configuration>48 </plugin>49 </plugins>50 </build>51 42 </project> -
trunk/quest-misc/.classpath
r457 r757 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <classpath> 3 <classpathentry kind="src" path="src/main/java"/> 4 <classpathentry kind="src" path="src/main/resources"/> 3 <classpathentry kind="src" output="target/classes" path="src/main/java"> 4 <attributes> 5 <attribute name="optional" value="true"/> 6 <attribute name="maven.pomderived" value="true"/> 7 </attributes> 8 </classpathentry> 9 <classpathentry including="**/*.java" kind="src" path="src/main/resources"/> 10 <classpathentry kind="src" output="target/test-classes" path="src/test/java"> 11 <attributes> 12 <attribute name="optional" value="true"/> 13 <attribute name="maven.pomderived" value="true"/> 14 </attributes> 15 </classpathentry> 5 16 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"> 6 17 <attributes> -
trunk/quest-misc/pom.xml
r671 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-misc</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-misc</name> 7 10 <scm> 8 <url> https://www.trex.informatik.uni-goettingen.de/svn/swephd/pharms/tasktree/trunk/quest-misc</url>11 <url>${quest-scm-trunk-dir}/quest-misc</url> 9 12 </scm> 10 13 <dependencies> … … 14 17 <version>0.0.1-SNAPSHOT</version> 15 18 </dependency> 16 <dependency>17 <groupId>junit</groupId>18 <artifactId>junit</artifactId>19 <version>4.8.1</version>20 <scope>test</scope>21 </dependency>22 19 </dependencies> 23 <distributionManagement>24 <snapshotRepository>25 <id>quest-snapshots</id>26 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/quest-snapshots</url>27 </snapshotRepository>28 </distributionManagement>29 <build>30 <plugins>31 <plugin>32 <artifactId>maven-compiler-plugin</artifactId>33 <version>2.5.1</version>34 <configuration>35 <source>1.6</source>36 <target>1.6</target>37 </configuration>38 </plugin>39 </plugins>40 </build>41 20 </project> -
trunk/quest-plugin-core/pom.xml
r511 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-core</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-core</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-core</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-core</url> 10 13 </scm> 11 <build>12 <plugins>13 <plugin>14 <artifactId>maven-compiler-plugin</artifactId>15 <version>2.3.2</version>16 <configuration>17 <source>1.6</source>18 <target>1.6</target>19 </configuration>20 </plugin>21 </plugins>22 </build>23 14 </project> -
trunk/quest-plugin-guitar/pom.xml
r671 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-guitar</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-guitar</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-guitar</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-guitar</url> 10 13 </scm> 11 <repositories>12 <repository>13 <id>quest-repo</id>14 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>15 </repository>16 </repositories>17 14 <dependencies> 18 15 <dependency> … … 24 21 <groupId>de.ugoe.cs.quest</groupId> 25 22 <artifactId>quest-plugin-core</artifactId> 26 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 27 24 </dependency> 28 25 <dependency> 29 26 <groupId>de.ugoe.cs.quest</groupId> 30 27 <artifactId>quest-core-events</artifactId> 31 <version> 0.0.1-SNAPSHOT</version>28 <version>${parent.version}</version> 32 29 </dependency> 33 30 <dependency> 34 31 <groupId>de.ugoe.cs.quest</groupId> 35 32 <artifactId>quest-core-usageprofiles</artifactId> 36 <version> 0.0.1-SNAPSHOT</version>33 <version>${parent.version}</version> 37 34 </dependency> 38 35 <dependency> 39 36 <groupId>de.ugoe.cs.quest</groupId> 40 37 <artifactId>quest-misc</artifactId> 41 <version> 0.0.1-SNAPSHOT</version>38 <version>${parent.version}</version> 42 39 </dependency> 43 40 <dependency> … … 47 44 </dependency> 48 45 </dependencies> 49 <build>50 <plugins>51 <plugin>52 <artifactId>maven-compiler-plugin</artifactId>53 <version>2.3.2</version>54 <configuration>55 <source>1.6</source>56 <target>1.6</target>57 </configuration>58 </plugin>59 </plugins>60 </build>61 46 </project> -
trunk/quest-plugin-jfc/pom.xml
r671 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-jfc</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-jfc</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-jfc</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-jfc</url> 10 13 </scm> 11 14 <dependencies> … … 18 21 <groupId>de.ugoe.cs.quest</groupId> 19 22 <artifactId>quest-plugin-core</artifactId> 20 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 21 24 </dependency> 22 25 <dependency> 23 26 <groupId>de.ugoe.cs.quest</groupId> 24 27 <artifactId>quest-core-events</artifactId> 25 <version> 0.0.1-SNAPSHOT</version>28 <version>${parent.version}</version> 26 29 </dependency> 27 30 <dependency> 28 31 <groupId>de.ugoe.cs.quest</groupId> 29 32 <artifactId>quest-misc</artifactId> 30 <version> 0.0.1-SNAPSHOT</version>33 <version>${parent.version}</version> 31 34 </dependency> 32 35 <dependency> … … 38 41 <build> 39 42 <plugins> 40 <plugin>41 <artifactId>maven-compiler-plugin</artifactId>42 <version>2.3.2</version>43 <configuration>44 <source>1.6</source>45 <target>1.6</target>46 </configuration>47 </plugin>48 43 <plugin> 49 44 <artifactId>maven-assembly-plugin</artifactId> -
trunk/quest-plugin-mfc/pom.xml
r671 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-mfc</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-mfc</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-mfc</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-mfc</url> 10 13 </scm> 11 14 <dependencies> … … 18 21 <groupId>de.ugoe.cs.quest</groupId> 19 22 <artifactId>quest-plugin-core</artifactId> 20 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 21 24 </dependency> 22 25 <dependency> … … 33 36 <groupId>de.ugoe.cs.quest</groupId> 34 37 <artifactId>quest-core-events</artifactId> 35 <version> 0.0.1-SNAPSHOT</version>38 <version>${parent.version}</version> 36 39 </dependency> 37 40 <dependency> 38 41 <groupId>de.ugoe.cs.quest</groupId> 39 42 <artifactId>quest-misc</artifactId> 40 <version> 0.0.1-SNAPSHOT</version>43 <version>${parent.version}</version> 41 44 </dependency> 42 45 </dependencies> 43 46 <build> 44 47 <plugins> 45 <plugin>46 <artifactId>maven-compiler-plugin</artifactId>47 <version>2.3.2</version>48 <configuration>49 <source>1.6</source>50 <target>1.6</target>51 </configuration>52 </plugin>53 48 <plugin> 54 49 <artifactId>maven-assembly-plugin</artifactId> -
trunk/quest-plugin-php/pom.xml
r671 r757 1 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3 <parent> 4 <groupId>de.ugoe.cs.quest</groupId> 5 <artifactId>quest</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 </parent> 3 8 <modelVersion>4.0.0</modelVersion> 4 <groupId>de.ugoe.cs.quest</groupId>5 9 <artifactId>quest-plugin-php</artifactId> 6 <version>0.0.1-SNAPSHOT</version>7 10 <name>quest-plugin-php</name> 8 11 <scm> 9 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-plugin-php</url>12 <url>${quest-scm-trunk-dir}/quest-plugin-php</url> 10 13 </scm> 11 14 <dependencies> … … 18 21 <groupId>de.ugoe.cs.quest</groupId> 19 22 <artifactId>quest-plugin-core</artifactId> 20 <version> 0.0.1-SNAPSHOT</version>23 <version>${parent.version}</version> 21 24 </dependency> 22 25 <dependency> 23 26 <groupId>de.ugoe.cs.quest</groupId> 24 27 <artifactId>quest-core-events</artifactId> 25 <version> 0.0.1-SNAPSHOT</version>28 <version>${parent.version}</version> 26 29 </dependency> 27 30 <dependency> 28 31 <groupId>de.ugoe.cs.quest</groupId> 29 32 <artifactId>quest-misc</artifactId> 30 <version> 0.0.1-SNAPSHOT</version>33 <version>${parent.version}</version> 31 34 </dependency> 32 35 </dependencies> 33 36 <build> 34 37 <plugins> 35 <plugin>36 <artifactId>maven-compiler-plugin</artifactId>37 <version>2.3.2</version>38 <configuration>39 <source>1.6</source>40 <target>1.6</target>41 </configuration>42 </plugin>43 38 <plugin> 44 39 <artifactId>maven-assembly-plugin</artifactId> -
trunk/quest-runner/pom.xml
r673 r757 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-runner</artifactId> 9 <version>0.0.1-SNAPSHOT</version>10 13 <name>quest-runner</name> 11 14 <scm> 12 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-runner</url>15 <url>${quest-scm-trunk-dir}/quest-runner</url> 13 16 </scm> 14 17 <dependencies> … … 21 24 <groupId>de.ugoe.cs.quest</groupId> 22 25 <artifactId>quest-plugin-core</artifactId> 23 <version> 0.0.1-SNAPSHOT</version>26 <version>${parent.version}</version> 24 27 </dependency> 25 28 <dependency> 26 29 <groupId>de.ugoe.cs.quest</groupId> 27 30 <artifactId>quest-ui-core</artifactId> 28 <version> 0.0.1-SNAPSHOT</version>31 <version>${parent.version}</version> 29 32 </dependency> 30 33 <dependency> 31 34 <groupId>de.ugoe.cs.quest</groupId> 32 35 <artifactId>quest-ui-swt</artifactId> 33 <version> 0.0.1-SNAPSHOT</version>36 <version>${parent.version}</version> 34 37 </dependency> 35 38 <dependency> … … 41 44 <groupId>de.ugoe.cs.quest</groupId> 42 45 <artifactId>quest-plugin-guitar</artifactId> 43 <version> 0.0.1-SNAPSHOT</version>46 <version>${parent.version}</version> 44 47 </dependency> 45 48 <dependency> 46 49 <groupId>de.ugoe.cs.quest</groupId> 47 50 <artifactId>quest-plugin-jfc</artifactId> 48 <version> 0.0.1-SNAPSHOT</version>51 <version>${parent.version}</version> 49 52 </dependency> 50 53 <dependency> 51 54 <groupId>de.ugoe.cs.quest</groupId> 52 55 <artifactId>quest-plugin-mfc</artifactId> 53 <version> 0.0.1-SNAPSHOT</version>56 <version>${parent.version}</version> 54 57 </dependency> 55 58 <dependency> 56 59 <groupId>de.ugoe.cs.quest</groupId> 57 60 <artifactId>quest-plugin-php</artifactId> 58 <version> 0.0.1-SNAPSHOT</version>61 <version>${parent.version}</version> 59 62 </dependency> 60 63 <dependency> … … 109 112 <plugin> 110 113 <groupId>org.apache.maven.plugins</groupId> 111 <artifactId>maven-compiler-plugin</artifactId>112 <version>2.5.1</version>113 <configuration>114 <source>1.6</source>115 <target>1.6</target>116 <compilerArgument>-Xlint:all</compilerArgument>117 <showDeprecation>true</showDeprecation>118 <showWarnings>true</showWarnings>119 </configuration>120 </plugin>121 <plugin>122 <groupId>org.apache.maven.plugins</groupId>123 114 <artifactId>maven-jar-plugin</artifactId> 124 115 <configuration> … … 148 139 <groupId>de.ugoe.cs.quest</groupId> 149 140 <artifactId>quest-plugin-jfc</artifactId> 150 <version> 0.0.1-SNAPSHOT</version>141 <version>${parent.version}</version> 151 142 <classifier>config</classifier> 152 143 <type>zip</type> … … 167 158 <groupId>de.ugoe.cs.quest</groupId> 168 159 <artifactId>quest-plugin-mfc</artifactId> 169 <version> 0.0.1-SNAPSHOT</version>160 <version>${parent.version}</version> 170 161 <classifier>config</classifier> 171 162 <type>zip</type> … … 186 177 <groupId>de.ugoe.cs.quest</groupId> 187 178 <artifactId>quest-plugin-php</artifactId> 188 <version> 0.0.1-SNAPSHOT</version>179 <version>${parent.version}</version> 189 180 <classifier>config</classifier> 190 181 <type>zip</type> -
trunk/quest-ui-core/pom.xml
r729 r757 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-ui-core</artifactId> 9 <version>0.0.1-SNAPSHOT</version>10 13 <name>quest-ui-core</name> 11 14 <scm> 12 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-core</url>15 <url>${quest-scm-trunk-dir}/quest-ui-core</url> 13 16 </scm> 14 17 <dependencies> … … 21 24 <groupId>de.ugoe.cs.quest</groupId> 22 25 <artifactId>quest-misc</artifactId> 23 <version> 0.0.1-SNAPSHOT</version>26 <version>${parent.version}</version> 24 27 </dependency> 25 28 <dependency> 26 29 <groupId>de.ugoe.cs.quest</groupId> 27 30 <artifactId>quest-core-events</artifactId> 28 <version> 0.0.1-SNAPSHOT</version>31 <version>${parent.version}</version> 29 32 </dependency> 30 33 <dependency> 31 34 <groupId>de.ugoe.cs.quest</groupId> 32 35 <artifactId>quest-core-usageprofiles</artifactId> 33 <version> 0.0.1-SNAPSHOT</version>36 <version>${parent.version}</version> 34 37 </dependency> 35 38 <dependency> 36 39 <groupId>de.ugoe.cs.quest</groupId> 37 40 <artifactId>quest-core-coverage</artifactId> 38 <version> 0.0.1-SNAPSHOT</version>41 <version>${parent.version}</version> 39 42 </dependency> 40 43 <dependency> 41 44 <groupId>de.ugoe.cs.quest</groupId> 42 45 <artifactId>quest-core-assertions</artifactId> 43 <version> 0.0.1-SNAPSHOT</version>46 <version>${parent.version}</version> 44 47 </dependency> 45 48 <dependency> … … 51 54 <groupId>de.ugoe.cs.quest</groupId> 52 55 <artifactId>quest-core-tasktrees</artifactId> 53 <version> 0.0.1-SNAPSHOT</version>56 <version>${parent.version}</version> 54 57 </dependency> 55 58 <dependency> 56 59 <groupId>de.ugoe.cs.quest</groupId> 57 60 <artifactId>quest-core-usability</artifactId> 58 <version> 0.0.1-SNAPSHOT</version>61 <version>${parent.version}</version> 59 62 </dependency> 60 63 <dependency> … … 69 72 </dependency> 70 73 </dependencies> 71 <build>72 <plugins>73 <plugin>74 <artifactId>maven-compiler-plugin</artifactId>75 <version>2.3.2</version>76 <configuration>77 <source>1.6</source>78 <target>1.6</target>79 </configuration>80 </plugin>81 </plugins>82 </build>83 74 </project> -
trunk/quest-ui-swt/pom.xml
r707 r757 1 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 <parent> 3 <groupId>de.ugoe.cs.quest</groupId> 4 <artifactId>quest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 </parent> 2 7 <modelVersion>4.0.0</modelVersion> 3 <groupId>de.ugoe.cs.quest</groupId>4 8 <artifactId>quest-ui-swt</artifactId> 5 <version>0.0.1-SNAPSHOT</version>6 9 <name>quest-ui-swt</name> 7 <scm>8 <url> https://quest.informatik.uni-goettingen.de/svn/quest/trunk/quest-ui-swt</url>10 <scm> 11 <url>${quest-scm-trunk-dir}/quest-ui-swt</url> 9 12 </scm> 10 13 <repositories> … … 12 15 <id>swt-repo</id> 13 16 <url>https://swt-repo.googlecode.com/svn/repo</url> 14 </repository>15 <repository>16 <id>quest-repo</id>17 <url>https://trex.informatik.uni-goettingen.de/nexus/content/repositories/thirdparty</url>18 17 </repository> 19 18 </repositories> … … 27 26 <groupId>de.ugoe.cs.quest</groupId> 28 27 <artifactId>quest-core-events</artifactId> 29 <version> 0.0.1-SNAPSHOT</version>28 <version>${parent.version}</version> 30 29 </dependency> 31 30 <dependency> 32 31 <groupId>de.ugoe.cs.quest</groupId> 33 32 <artifactId>quest-core-assertions</artifactId> 34 <version> 0.0.1-SNAPSHOT</version>33 <version>${parent.version}</version> 35 34 </dependency> 36 35 <dependency> 37 36 <groupId>de.ugoe.cs.quest</groupId> 38 37 <artifactId>quest-core-usageprofiles</artifactId> 39 <version> 0.0.1-SNAPSHOT</version>38 <version>${parent.version}</version> 40 39 </dependency> 41 40 <dependency> … … 144 143 </profile> 145 144 </profiles> 146 147 <build>148 <plugins>149 <plugin>150 <artifactId>maven-compiler-plugin</artifactId>151 <version>2.3.2</version>152 <configuration>153 <source>1.6</source>154 <target>1.6</target>155 </configuration>156 </plugin>157 </plugins>158 </build>159 145 </project>
Note: See TracChangeset
for help on using the changeset viewer.