diff --git a/pom.xml b/pom.xml index 81128448cbfde020c8303b4ca3881eb266c121ed..a3014df98ca88605fa8827fac397ca9c5f0873b4 100644 --- a/pom.xml +++ b/pom.xml @@ -310,12 +310,6 @@ <artifactId>doxia-module-markdown-teetime</artifactId> <version>1.6</version> </dependency> - <!-- add support for ssh/scp --> - <dependency> - <groupId>org.apache.maven.wagon</groupId> - <artifactId>wagon-ssh</artifactId> - <version>2.9-SNAPSHOT</version> - </dependency> <!-- skin --> <dependency> <groupId>lt.velykis.maven.skins</groupId> diff --git a/src/main/java/teetime/framework/Configuration.java b/src/main/java/teetime/framework/Configuration.java index ea1a69f123e7b74a651274c2c13949e3d36f532f..bfaf92150fc223a0abc6347e96cf0f812ff4488b 100644 --- a/src/main/java/teetime/framework/Configuration.java +++ b/src/main/java/teetime/framework/Configuration.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package teetime.framework; /** diff --git a/src/main/java/teetime/stage/basic/ITransformation.java b/src/main/java/teetime/stage/basic/ITransformation.java index 7efae2a0363cfed129b6f99b83e7c7e5abe1524f..f4c0bd8a37e1fdf5ecf800e17c4bdf442ec57449 100644 --- a/src/main/java/teetime/stage/basic/ITransformation.java +++ b/src/main/java/teetime/stage/basic/ITransformation.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package teetime.stage.basic; import teetime.framework.InputPort; diff --git a/src/site/markdown/wiki b/src/site/markdown/wiki index 76a62dcf658beff5cbb6cd8145b50b7714d8ef3c..9e96a45480f03b208c29a2f9447925229314edf3 160000 --- a/src/site/markdown/wiki +++ b/src/site/markdown/wiki @@ -1 +1 @@ -Subproject commit 76a62dcf658beff5cbb6cd8145b50b7714d8ef3c +Subproject commit 9e96a45480f03b208c29a2f9447925229314edf3 diff --git a/src/test/java/teetime/framework/AbstractCompositeStageTest.java b/src/test/java/teetime/framework/AbstractCompositeStageTest.java index 4f093cf0f58ddf4b39fcc6bcd6e5f113d9bf8884..3ca971fb3f31ea250e8ebcc718693f526e8df1f5 100644 --- a/src/test/java/teetime/framework/AbstractCompositeStageTest.java +++ b/src/test/java/teetime/framework/AbstractCompositeStageTest.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package teetime.framework; diff --git a/src/test/java/teetime/framework/AbstractPortTest.java b/src/test/java/teetime/framework/AbstractPortTest.java index 5c711d8761acbd2d21d5e92f52902022be7ae31e..d8d14a37eb8f02ec3a3fdac0d43eb1ddde0a58fc 100644 --- a/src/test/java/teetime/framework/AbstractPortTest.java +++ b/src/test/java/teetime/framework/AbstractPortTest.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime.sourceforge.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package teetime.framework; import static org.hamcrest.Matchers.is;