From 885a24cf1c2d968c50fbeffbb8cfbfbd9ececb1f Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Fri, 26 Jun 2015 15:29:59 +0200 Subject: [PATCH] removed ssh plugin (no longer needed) --- pom.xml | 6 ------ .../java/teetime/framework/Configuration.java | 15 +++++++++++++++ .../java/teetime/stage/basic/ITransformation.java | 15 +++++++++++++++ src/site/markdown/wiki | 2 +- .../framework/AbstractCompositeStageTest.java | 15 +++++++++++++++ .../java/teetime/framework/AbstractPortTest.java | 15 +++++++++++++++ 6 files changed, 61 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index 81128448..a3014df9 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 ea1a69f1..bfaf9215 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 7efae2a0..f4c0bd8a 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 76a62dcf..9e96a454 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 4f093cf0..3ca971fb 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 5c711d87..d8d14a37 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; -- GitLab