Ignore:
Timestamp:
10/17/12 10:29:31 (12 years ago)
Author:
sherbold
Message:
  • added copyright under the Apache License, Version 2.0
Location:
trunk/autoquest-test-utils
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-test-utils/pom.xml

    r920 r927  
    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.autoquest</groupId> 
    8         <artifactId>autoquest</artifactId> 
    9         <version>0.0.1-SNAPSHOT</version> 
    10     </parent> 
    11     <modelVersion>4.0.0</modelVersion> 
    12     <artifactId>autoquest-test-utils</artifactId> 
    13     <name>autoquest-test-utils</name> 
    14     <scm> 
    15         <url>${autoquest-scm-trunk-dir}/autoquest-test-utils</url> 
    16     </scm> 
    17     <dependencies> 
    18         <dependency> 
    19             <groupId>de.ugoe.cs</groupId> 
    20             <artifactId>java-utils</artifactId> 
    21             <version>0.0.1-SNAPSHOT</version> 
    22         </dependency> 
    23         <dependency> 
    24             <groupId>de.ugoe.cs.autoquest</groupId> 
    25             <artifactId>autoquest-core-events</artifactId> 
    26             <version>${project.parent.version}</version> 
    27         </dependency> 
    28         <dependency> 
    29             <groupId>de.ugoe.cs.autoquest</groupId> 
    30             <artifactId>autoquest-core-tasktrees</artifactId> 
    31             <version>${project.parent.version}</version> 
    32         </dependency> 
    33         <dependency> 
    34             <groupId>de.ugoe.cs.autoquest</groupId> 
    35             <artifactId>autoquest-core-usageprofiles</artifactId> 
    36             <version>${project.parent.version}</version> 
    37         </dependency> 
    38         <dependency> 
    39             <groupId>junit</groupId> 
    40             <artifactId>junit</artifactId> 
    41             <version>4.8.1</version> 
    42         </dependency> 
    43     </dependencies> 
     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        <parent> 
     4                <groupId>de.ugoe.cs.autoquest</groupId> 
     5                <artifactId>autoquest</artifactId> 
     6                <version>0.0.1-SNAPSHOT</version> 
     7        </parent> 
     8        <modelVersion>4.0.0</modelVersion> 
     9        <artifactId>autoquest-test-utils</artifactId> 
     10        <name>autoquest-test-utils</name> 
     11        <licenses> 
     12                <license> 
     13                        <name>The Apache Software License, Version 2.0</name> 
     14                        <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 
     15                </license> 
     16        </licenses> 
     17        <scm> 
     18                <url>${autoquest-scm-trunk-dir}/autoquest-test-utils</url> 
     19        </scm> 
     20        <dependencies> 
     21                <dependency> 
     22                        <groupId>de.ugoe.cs</groupId> 
     23                        <artifactId>java-utils</artifactId> 
     24                        <version>0.0.1-SNAPSHOT</version> 
     25                </dependency> 
     26                <dependency> 
     27                        <groupId>de.ugoe.cs.autoquest</groupId> 
     28                        <artifactId>autoquest-core-events</artifactId> 
     29                        <version>${project.parent.version}</version> 
     30                </dependency> 
     31                <dependency> 
     32                        <groupId>de.ugoe.cs.autoquest</groupId> 
     33                        <artifactId>autoquest-core-tasktrees</artifactId> 
     34                        <version>${project.parent.version}</version> 
     35                </dependency> 
     36                <dependency> 
     37                        <groupId>de.ugoe.cs.autoquest</groupId> 
     38                        <artifactId>autoquest-core-usageprofiles</artifactId> 
     39                        <version>${project.parent.version}</version> 
     40                </dependency> 
     41                <dependency> 
     42                        <groupId>junit</groupId> 
     43                        <artifactId>junit</artifactId> 
     44                        <version>4.8.1</version> 
     45                </dependency> 
     46        </dependencies> 
    4447</project> 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/tasktrees/TaskTreeChecker.java

    r922 r927  
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
     14 
    115package de.ugoe.cs.autoquest.tasktrees; 
    216 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/test/CommandRunner.java

    r922 r927  
    1 // Module    : $RCSfile: CommandRunner.java,v $ 
    2 // Version   : $Revision: 0.0 $  $Author: pharms $  $Date: 29.08.2012 $ 
    3 // Project   : quest-test-utils 
    4 // Creation  : 2012 by pharms 
    5 // Copyright : Patrick Harms, 2012 
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
     14 
    615package de.ugoe.cs.autoquest.test; 
    716 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/test/DummyGUIElement.java

    r922 r927  
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
    114 
    215package de.ugoe.cs.autoquest.test; 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/test/DummyInteraction.java

    r922 r927  
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
     14 
    115package de.ugoe.cs.autoquest.test; 
    216 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/test/DummyTextField.java

    r922 r927  
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
     14 
    115package de.ugoe.cs.autoquest.test; 
    216 
  • trunk/autoquest-test-utils/src/main/java/de/ugoe/cs/autoquest/usageprofiles/MockTrieBasedModel.java

    r922 r927  
     1//   Copyright 2012 Georg-August-Universität Göttingen, Germany 
     2// 
     3//   Licensed under the Apache License, Version 2.0 (the "License"); 
     4//   you may not use this file except in compliance with the License. 
     5//   You may obtain a copy of the License at 
     6// 
     7//       http://www.apache.org/licenses/LICENSE-2.0 
     8// 
     9//   Unless required by applicable law or agreed to in writing, software 
     10//   distributed under the License is distributed on an "AS IS" BASIS, 
     11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
     12//   See the License for the specific language governing permissions and 
     13//   limitations under the License. 
     14 
    115package de.ugoe.cs.autoquest.usageprofiles; 
    216 
Note: See TracChangeset for help on using the changeset viewer.