From 2b6dc5e18728dbe4866a45147edb651ece10b624 Mon Sep 17 00:00:00 2001 From: jfarcand Date: Mon, 5 Feb 2018 17:31:12 -0500 Subject: [PATCH] Update copyright --- release.properties | 11 ----------- .../org/atmosphere/nettosphere/BridgeRuntime.java | 2 +- .../org/atmosphere/nettosphere/ChannelWriter.java | 2 +- .../org/atmosphere/nettosphere/ChunkedWriter.java | 2 +- .../main/java/org/atmosphere/nettosphere/Config.java | 2 +- .../main/java/org/atmosphere/nettosphere/Context.java | 2 +- .../main/java/org/atmosphere/nettosphere/Handler.java | 2 +- .../nettosphere/HttpStaticFileServerHandler.java | 2 +- .../java/org/atmosphere/nettosphere/Nettosphere.java | 2 +- .../nettosphere/NettyChannelInitializer.java | 2 +- .../org/atmosphere/nettosphere/NettyWebSocket.java | 2 +- .../org/atmosphere/nettosphere/RuntimeEngine.java | 2 +- .../java/org/atmosphere/nettosphere/StreamWriter.java | 2 +- .../org/atmosphere/nettosphere/util/MimeType.java | 2 +- .../nettosphere/util/SSLContextListener.java | 2 +- .../java/org/atmosphere/nettosphere/util/Utils.java | 2 +- .../java/org/atmosphere/nettosphere/util/Version.java | 2 +- .../org/atmosphere/nettosphere/test/BaseTest.java | 2 +- .../nettosphere/test/NettyAtmosphereTest.java | 2 +- .../atmosphere/nettosphere/test/NettyJerseyTest.java | 2 +- .../org/atmosphere/nettosphere/test/Resource.java | 2 +- 21 files changed, 20 insertions(+), 31 deletions(-) delete mode 100644 release.properties diff --git a/release.properties b/release.properties deleted file mode 100644 index d532f53..0000000 --- a/release.properties +++ /dev/null @@ -1,11 +0,0 @@ -#release configuration -#Fri Feb 02 18:23:16 EST 2018 -scm.tagNameFormat=@{project.artifactId}-@{project.version} -pushChanges=true -scm.url=scm\:git\:git@github.com\:Atmosphere/nettosphere.git -preparationGoals=clean verify -remoteTagging=true -scm.commentPrefix=[maven-release-plugin] -exec.additionalArguments=\ -Psonatype-oss-release -exec.snapshotReleasePluginAllowed=false -completedPhase=scm-check-modifications diff --git a/server/src/main/java/org/atmosphere/nettosphere/BridgeRuntime.java b/server/src/main/java/org/atmosphere/nettosphere/BridgeRuntime.java index 64919a0..1668987 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/BridgeRuntime.java +++ b/server/src/main/java/org/atmosphere/nettosphere/BridgeRuntime.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/ChannelWriter.java b/server/src/main/java/org/atmosphere/nettosphere/ChannelWriter.java index cce9dae..7ef9142 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/ChannelWriter.java +++ b/server/src/main/java/org/atmosphere/nettosphere/ChannelWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/ChunkedWriter.java b/server/src/main/java/org/atmosphere/nettosphere/ChunkedWriter.java index 0f27043..554a48d 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/ChunkedWriter.java +++ b/server/src/main/java/org/atmosphere/nettosphere/ChunkedWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/Config.java b/server/src/main/java/org/atmosphere/nettosphere/Config.java index 7ce3818..d3f43dd 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/Config.java +++ b/server/src/main/java/org/atmosphere/nettosphere/Config.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/Context.java b/server/src/main/java/org/atmosphere/nettosphere/Context.java index b342591..ce2a106 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/Context.java +++ b/server/src/main/java/org/atmosphere/nettosphere/Context.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/Handler.java b/server/src/main/java/org/atmosphere/nettosphere/Handler.java index 410c00c..559186b 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/Handler.java +++ b/server/src/main/java/org/atmosphere/nettosphere/Handler.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/HttpStaticFileServerHandler.java b/server/src/main/java/org/atmosphere/nettosphere/HttpStaticFileServerHandler.java index 0e6c462..23e4d28 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/HttpStaticFileServerHandler.java +++ b/server/src/main/java/org/atmosphere/nettosphere/HttpStaticFileServerHandler.java @@ -14,7 +14,7 @@ * under the License. */ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/Nettosphere.java b/server/src/main/java/org/atmosphere/nettosphere/Nettosphere.java index bb4b7af..58403c1 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/Nettosphere.java +++ b/server/src/main/java/org/atmosphere/nettosphere/Nettosphere.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/NettyChannelInitializer.java b/server/src/main/java/org/atmosphere/nettosphere/NettyChannelInitializer.java index 9d9930b..232d62a 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/NettyChannelInitializer.java +++ b/server/src/main/java/org/atmosphere/nettosphere/NettyChannelInitializer.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/NettyWebSocket.java b/server/src/main/java/org/atmosphere/nettosphere/NettyWebSocket.java index 3c5193c..65dcffb 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/NettyWebSocket.java +++ b/server/src/main/java/org/atmosphere/nettosphere/NettyWebSocket.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/RuntimeEngine.java b/server/src/main/java/org/atmosphere/nettosphere/RuntimeEngine.java index 13ff956..b90fed8 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/RuntimeEngine.java +++ b/server/src/main/java/org/atmosphere/nettosphere/RuntimeEngine.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/StreamWriter.java b/server/src/main/java/org/atmosphere/nettosphere/StreamWriter.java index 5780475..966488c 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/StreamWriter.java +++ b/server/src/main/java/org/atmosphere/nettosphere/StreamWriter.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/util/MimeType.java b/server/src/main/java/org/atmosphere/nettosphere/util/MimeType.java index 97f8f33..c2d232b 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/util/MimeType.java +++ b/server/src/main/java/org/atmosphere/nettosphere/util/MimeType.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/util/SSLContextListener.java b/server/src/main/java/org/atmosphere/nettosphere/util/SSLContextListener.java index 83b6e4e..8e95c1f 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/util/SSLContextListener.java +++ b/server/src/main/java/org/atmosphere/nettosphere/util/SSLContextListener.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/util/Utils.java b/server/src/main/java/org/atmosphere/nettosphere/util/Utils.java index f233ed5..efdacbc 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/util/Utils.java +++ b/server/src/main/java/org/atmosphere/nettosphere/util/Utils.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/main/java/org/atmosphere/nettosphere/util/Version.java b/server/src/main/java/org/atmosphere/nettosphere/util/Version.java index 74c67e9..28b8d36 100644 --- a/server/src/main/java/org/atmosphere/nettosphere/util/Version.java +++ b/server/src/main/java/org/atmosphere/nettosphere/util/Version.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/test/java/org/atmosphere/nettosphere/test/BaseTest.java b/server/src/test/java/org/atmosphere/nettosphere/test/BaseTest.java index 42c5714..f6487ed 100644 --- a/server/src/test/java/org/atmosphere/nettosphere/test/BaseTest.java +++ b/server/src/test/java/org/atmosphere/nettosphere/test/BaseTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/test/java/org/atmosphere/nettosphere/test/NettyAtmosphereTest.java b/server/src/test/java/org/atmosphere/nettosphere/test/NettyAtmosphereTest.java index fc4d53a..6b6d0b9 100644 --- a/server/src/test/java/org/atmosphere/nettosphere/test/NettyAtmosphereTest.java +++ b/server/src/test/java/org/atmosphere/nettosphere/test/NettyAtmosphereTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/test/java/org/atmosphere/nettosphere/test/NettyJerseyTest.java b/server/src/test/java/org/atmosphere/nettosphere/test/NettyJerseyTest.java index 0c53f4f..bbd063c 100644 --- a/server/src/test/java/org/atmosphere/nettosphere/test/NettyJerseyTest.java +++ b/server/src/test/java/org/atmosphere/nettosphere/test/NettyJerseyTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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 diff --git a/server/src/test/java/org/atmosphere/nettosphere/test/Resource.java b/server/src/test/java/org/atmosphere/nettosphere/test/Resource.java index 78b53f7..1cfc4ac 100644 --- a/server/src/test/java/org/atmosphere/nettosphere/test/Resource.java +++ b/server/src/test/java/org/atmosphere/nettosphere/test/Resource.java @@ -1,5 +1,5 @@ /* - * Copyright 2017 Async-IO.org + * Copyright 2008-2018 Async-IO.org * * 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