From 0a3ea5853bca33191053e577018a1db50d9bf623 Mon Sep 17 00:00:00 2001 From: Christian Wulf <chw@informatik.uni-kiel.de> Date: Tue, 14 Jul 2015 13:10:51 +0200 Subject: [PATCH] removed pmd and findbugs plugin in report (is inherited from <build>) --- .settings/edu.umd.cs.findbugs.core.prefs | 2 +- pom.xml | 17 ----------------- .../java/teetime/framework/ThreadService.java | 15 +++++++++++++++ .../framework/concurrent/SignalingCounter.java | 15 +++++++++++++++ 4 files changed, 31 insertions(+), 18 deletions(-) diff --git a/.settings/edu.umd.cs.findbugs.core.prefs b/.settings/edu.umd.cs.findbugs.core.prefs index b8d923bd..f0adbfc1 100644 --- a/.settings/edu.umd.cs.findbugs.core.prefs +++ b/.settings/edu.umd.cs.findbugs.core.prefs @@ -1,5 +1,5 @@ #FindBugs User Preferences -#Fri Jul 10 13:06:00 CEST 2015 +#Tue Jul 14 13:07:22 CEST 2015 detector_threshold=2 effort=max excludefilter0=.fbExcludeFilterFile|true diff --git a/pom.xml b/pom.xml index 0a15d0e8..639aa96c 100644 --- a/pom.xml +++ b/pom.xml @@ -384,18 +384,6 @@ </reportSet> </reportSets> </plugin> - <!-- Findbugs --> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>3.0.1</version> - </plugin> - <!-- PMD --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-pmd-plugin</artifactId> - <version>3.4</version> - </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> @@ -404,11 +392,6 @@ <destDir>${javadocOutputDir}</destDir> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>2.7</version> - </plugin> </plugins> </reporting> diff --git a/src/main/java/teetime/framework/ThreadService.java b/src/main/java/teetime/framework/ThreadService.java index a778d108..c4194b4e 100644 --- a/src/main/java/teetime/framework/ThreadService.java +++ b/src/main/java/teetime/framework/ThreadService.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://christianwulf.github.io/teetime) + * + * 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; public class ThreadService { diff --git a/src/main/java/teetime/util/framework/concurrent/SignalingCounter.java b/src/main/java/teetime/util/framework/concurrent/SignalingCounter.java index a57c35c6..b3a92700 100644 --- a/src/main/java/teetime/util/framework/concurrent/SignalingCounter.java +++ b/src/main/java/teetime/util/framework/concurrent/SignalingCounter.java @@ -1,3 +1,18 @@ +/** + * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://christianwulf.github.io/teetime) + * + * 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.util.framework.concurrent; import com.carrotsearch.hppc.IntObjectHashMap; -- GitLab