From c3a513ba61486963c52bafe2f647f6c06b45248b Mon Sep 17 00:00:00 2001 From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de> Date: Tue, 9 Feb 2016 14:20:05 +0100 Subject: [PATCH] updated dependencies and plug-ins --- pom.xml | 8 ++++---- .../distributor/strategy/RoundRobinStrategy.java | 15 +++++++++++++++ .../distributor/strategy/RoundRobinStrategy2.java | 15 +++++++++++++++ 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 8c4abad0..8063953d 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ <java.version>1.6</java.version> <checkstyle.version>2.17</checkstyle.version> <findbugs.version>3.0.3</findbugs.version> - <pmd.version>3.5</pmd.version> + <pmd.version>3.6</pmd.version> <javadoc.version>2.10.3</javadoc.version> </properties> @@ -126,7 +126,7 @@ <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> - <version>1.7.13</version> + <version>1.7.14</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> @@ -153,7 +153,7 @@ <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-math3</artifactId> - <version>3.2</version> + <version>3.6</version> </dependency> </dependencies> @@ -203,7 +203,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> - <version>3.3</version> + <version>3.5</version> <configuration> <showDeprecation>true</showDeprecation> <source>${java.version}</source> diff --git a/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy.java b/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy.java index 840198d4..7fd24e98 100644 --- a/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy.java +++ b/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime-framework.github.io) + * + * 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.distributor.strategy; /** diff --git a/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy2.java b/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy2.java index 61957ac8..46fbb06d 100644 --- a/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy2.java +++ b/src/main/java/teetime/stage/basic/distributor/strategy/RoundRobinStrategy2.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://teetime-framework.github.io) + * + * 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.distributor.strategy; /** -- GitLab