Changeset 927 for trunk/java-utils-test
- Timestamp:
- 10/17/12 10:29:31 (12 years ago)
- Location:
- trunk/java-utils-test
- Files:
-
- 20 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/java-utils-test/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 <modelVersion>4.0.0</modelVersion> 7 <groupId>de.ugoe.cs</groupId> 8 <artifactId>java-utils-test</artifactId> 9 <version>0.0.1-SNAPSHOT</version> 10 <name>java-utils-test</name> 11 <scm> 12 <url>https://autoautoquest.informatik.uni-goettingen.de/svn/autoautoquest/trunk/java-utils-test</url> 13 </scm> 14 <dependencies> 15 <dependency> 16 <groupId>de.ugoe.cs</groupId> 17 <artifactId>java-utils</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 <dependency> 28 <groupId>junit-addons</groupId> 29 <artifactId>junit-addons</artifactId> 30 <version>1.4</version> 31 </dependency> 32 </dependencies> 33 <build> 34 <pluginManagement> 35 <plugins> 36 <plugin> 37 <groupId>org.eclipse.m2e</groupId> 38 <artifactId>lifecycle-mapping</artifactId> 39 <version>1.0.0</version> 40 <configuration> 41 <lifecycleMappingMetadata> 42 <pluginExecutions> 43 <pluginExecution> 44 <pluginExecutionFilter> 45 <groupId>org.apache.maven.plugins</groupId> 46 <artifactId>maven-dependency-plugin</artifactId> 47 <versionRange>[1.0.0,)</versionRange> 48 <goals> 49 <goal>unpack</goal> 50 </goals> 51 </pluginExecutionFilter> 52 <action> 53 <ignore /> 54 </action> 55 </pluginExecution> 56 <pluginExecution> 57 <pluginExecutionFilter> 58 <groupId>org.codehaus.mojo</groupId> 59 <artifactId>emma-maven-plugin</artifactId> 60 <versionRange>[1.0-alpha-3,)</versionRange> 61 <goals> 62 <goal>emma</goal> 63 </goals> 64 </pluginExecutionFilter> 65 <action> 66 <ignore /> 67 </action> 68 </pluginExecution> 69 </pluginExecutions> 70 </lifecycleMappingMetadata> 71 </configuration> 72 </plugin> 73 </plugins> 74 </pluginManagement> 75 <plugins> 76 <plugin> 77 <groupId>org.apache.maven.plugins</groupId> 78 <artifactId>maven-compiler-plugin</artifactId> 79 <version>2.3.2</version> 80 <configuration> 81 <source>1.6</source> 82 <target>1.6</target> 83 </configuration> 84 </plugin> 85 <plugin> 86 <groupId>org.apache.maven.plugins</groupId> 87 <artifactId>maven-dependency-plugin</artifactId> 88 <version>2.4</version> 89 <executions> 90 <execution> 91 <id>unpack</id> 92 <phase>process-classes</phase> 93 <goals> 94 <goal>unpack</goal> 95 </goals> 96 <configuration> 97 <artifactItems> 98 <artifactItem> 99 <groupId>de.ugoe.cs</groupId> 100 <artifactId>java-utils</artifactId> 101 <version>0.0.1-SNAPSHOT</version> 102 <outputDirectory>${project.build.directory}/classes</outputDirectory> 103 </artifactItem> 104 </artifactItems> 105 </configuration> 106 </execution> 107 </executions> 108 </plugin> 109 <plugin> 110 <groupId>org.codehaus.mojo</groupId> 111 <artifactId>emma-maven-plugin</artifactId> 112 <version>1.0-alpha-3</version> 113 <inherited>true</inherited> 114 <executions> 115 <execution> 116 <phase>process-classes</phase> 117 <goals> 118 <goal>emma</goal> 119 </goals> 120 </execution> 121 </executions> 122 </plugin> 123 <plugin> 124 <groupId>org.apache.maven.plugins</groupId> 125 <artifactId>maven-jar-plugin</artifactId> 126 <version>2.3.2</version> 127 <executions> 128 <execution> 129 <goals> 130 <goal>test-jar</goal> 131 </goals> 132 </execution> 133 </executions> 134 </plugin> 135 </plugins> 136 </build> 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</groupId> 5 <artifactId>java-utils-test</artifactId> 6 <version>0.0.1-SNAPSHOT</version> 7 <name>java-utils-test</name> 8 <licenses> 9 <license> 10 <name>The Apache Software License, Version 2.0</name> 11 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 12 </license> 13 </licenses> 14 <scm> 15 <url>https://autoautoquest.informatik.uni-goettingen.de/svn/autoautoquest/trunk/java-utils-test</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 <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 </dependencies> 36 <build> 37 <pluginManagement> 38 <plugins> 39 <plugin> 40 <groupId>org.eclipse.m2e</groupId> 41 <artifactId>lifecycle-mapping</artifactId> 42 <version>1.0.0</version> 43 <configuration> 44 <lifecycleMappingMetadata> 45 <pluginExecutions> 46 <pluginExecution> 47 <pluginExecutionFilter> 48 <groupId>org.apache.maven.plugins</groupId> 49 <artifactId>maven-dependency-plugin</artifactId> 50 <versionRange>[1.0.0,)</versionRange> 51 <goals> 52 <goal>unpack</goal> 53 </goals> 54 </pluginExecutionFilter> 55 <action> 56 <ignore /> 57 </action> 58 </pluginExecution> 59 <pluginExecution> 60 <pluginExecutionFilter> 61 <groupId>org.codehaus.mojo</groupId> 62 <artifactId>emma-maven-plugin</artifactId> 63 <versionRange>[1.0-alpha-3,)</versionRange> 64 <goals> 65 <goal>emma</goal> 66 </goals> 67 </pluginExecutionFilter> 68 <action> 69 <ignore /> 70 </action> 71 </pluginExecution> 72 </pluginExecutions> 73 </lifecycleMappingMetadata> 74 </configuration> 75 </plugin> 76 </plugins> 77 </pluginManagement> 78 <plugins> 79 <plugin> 80 <groupId>org.apache.maven.plugins</groupId> 81 <artifactId>maven-compiler-plugin</artifactId> 82 <version>2.3.2</version> 83 <configuration> 84 <source>1.6</source> 85 <target>1.6</target> 86 </configuration> 87 </plugin> 88 <plugin> 89 <groupId>org.apache.maven.plugins</groupId> 90 <artifactId>maven-dependency-plugin</artifactId> 91 <version>2.4</version> 92 <executions> 93 <execution> 94 <id>unpack</id> 95 <phase>process-classes</phase> 96 <goals> 97 <goal>unpack</goal> 98 </goals> 99 <configuration> 100 <artifactItems> 101 <artifactItem> 102 <groupId>de.ugoe.cs</groupId> 103 <artifactId>java-utils</artifactId> 104 <version>0.0.1-SNAPSHOT</version> 105 <outputDirectory>${project.build.directory}/classes</outputDirectory> 106 </artifactItem> 107 </artifactItems> 108 </configuration> 109 </execution> 110 </executions> 111 </plugin> 112 <plugin> 113 <groupId>org.codehaus.mojo</groupId> 114 <artifactId>emma-maven-plugin</artifactId> 115 <version>1.0-alpha-3</version> 116 <inherited>true</inherited> 117 <executions> 118 <execution> 119 <phase>process-classes</phase> 120 <goals> 121 <goal>emma</goal> 122 </goals> 123 </execution> 124 </executions> 125 </plugin> 126 <plugin> 127 <groupId>org.apache.maven.plugins</groupId> 128 <artifactId>maven-jar-plugin</artifactId> 129 <version>2.3.2</version> 130 <executions> 131 <execution> 132 <goals> 133 <goal>test-jar</goal> 134 </goals> 135 </execution> 136 </executions> 137 </plugin> 138 </plugins> 139 </build> 137 140 </project> -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/ArrayToolsTest.java
r479 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 1 15 package de.ugoe.cs.util; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/FileToolsTest.java
r479 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 1 15 package de.ugoe.cs.util; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/StringToolsTest.java
r479 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 1 15 package de.ugoe.cs.util; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/CommandExecuterTest.java
r766 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/CommandParserTest.java
r479 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/ConsoleTest.java
r638 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/FileOutputListenerTest.java
r479 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/GlobalDataContainerTest.java
r667 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/TextConsoleTest.java
r674 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 1 15 package de.ugoe.cs.util.console; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDexecTest.java
r766 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 1 15 package de.ugoe.cs.util.console.defaultcommands; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDexitTest.java
r668 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 1 15 package de.ugoe.cs.util.console.defaultcommands; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/defaultcommands/CMDlistCommandsTest.java
r784 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 1 15 2 16 package de.ugoe.cs.util.console.defaultcommands; -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockCommandListener.java
r479 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockErrorListener.java
r479 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockExceptionListener.java
r479 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockObserver.java
r636 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockOutputListener.java
r479 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/MockTraceListener.java
r638 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 1 15 package de.ugoe.cs.util.console.mock; 2 16 -
trunk/java-utils-test/src/test/java/de/ugoe/cs/util/console/mock/commands/CMDmockCommand.java
r766 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 1 15 package de.ugoe.cs.util.console.mock.commands; 2 16
Note: See TracChangeset
for help on using the changeset viewer.