Skip to content

Commit 41ca329

Browse files
committed
Rename packages to io.cdap
- Also update all occurrence of CASK to CDAP
1 parent d251c33 commit 41ca329

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+153
-159
lines changed

README.rst

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ netty-http
22
==========
33
A library to develop HTTP services with `Netty <http://netty.io/>`__. Supports the capability to route end-points based on `JAX-RS <https://jax-rs-spec.java.net/>`__-style annotations. Implements Guava's Service interface to manage the runtime-state of the HTTP service.
44

5-
.. <!--
6-
.. Does it work?
7-
.. -------------
8-
.. [![Build Status](https://travis-ci.org/caskdata/netty-http.svg?branch=develop)](https://travis-ci.org/caskdata/netty-http)
9-
.. -->
10-
115
Need for this library
126
---------------------
137
`Netty <http://netty.io/>`__ is a powerful framework to write asynchronous event-driven high-performance applications. While it is relatively easy to write a RESTful HTTP service using netty, the mapping between HTTP routes to handlers is
@@ -24,7 +18,7 @@ Build the HTTP Library
2418

2519
::
2620

27-
$ git clone https://github.com/caskdata/netty-http.git
21+
$ git clone https://github.com/cdapio/netty-http.git
2822
$ cd netty-http
2923
$ mvn clean package
3024

@@ -197,14 +191,14 @@ Are you interested in making netty-http better? Our development model is a simpl
197191
* Fork netty-http into your own GitHub repository
198192
* Create a topic branch with an appropriate name
199193
* Work on your favorite feature to your content
200-
* Once you are satisfied, create a pull request by going to the caskdata/netty-http project.
194+
* Once you are satisfied, create a pull request by going to the cdapio/netty-http project.
201195
* Address all the review comments
202-
* Once addressed, the changes will be committed to the caskdata/netty-http repo.
196+
* Once addressed, the changes will be committed to the cdapio/netty-http repo.
203197
204198
License
205199
=======
206200
207-
Copyright © 2014-2015 Cask Data, Inc. All Rights Reserved.
201+
Copyright © 2014-2019 Cask Data, Inc. All Rights Reserved.
208202
209203
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
210204

pom.xml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright © 2014 Cask Data, Inc.
3+
Copyright © 2014-2019 Cask Data, Inc.
44
55
Licensed under the Apache License, Version 2.0 (the "License"); you may not
66
use this file except in compliance with the License. You may obtain a copy of
@@ -17,13 +17,13 @@
1717
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1818

1919
<modelVersion>4.0.0</modelVersion>
20-
<groupId>co.cask.http</groupId>
20+
<groupId>io.cdap.http</groupId>
2121
<artifactId>netty-http</artifactId>
2222
<version>1.2.0-SNAPSHOT</version>
2323
<packaging>bundle</packaging>
2424
<name>Netty based path router</name>
2525
<description>Netty based path router</description>
26-
<url>https://github.com/caskdata/netty-http</url>
26+
<url>https://github.com/cdapio/netty-http</url>
2727

2828
<licenses>
2929
<license>
@@ -34,17 +34,17 @@
3434

3535
<developers>
3636
<developer>
37-
<name>Cask</name>
37+
<name>CDAP</name>
3838
<email>netty-http-dev@googlegroups.com</email>
39-
<organization>Cask</organization>
40-
<organizationUrl>https://github.com/caskdata/netty-http</organizationUrl>
39+
<organization>CDAP</organization>
40+
<organizationUrl>https://github.com/cdapio/netty-http</organizationUrl>
4141
</developer>
4242
</developers>
4343

4444
<scm>
45-
<connection>scm:git:https://github.com/caskdata/netty-http.git</connection>
46-
<url>https://github.com/caskdata/netty-http.git</url>
47-
<developerConnection>scm:git:git@github.com:caskdata/netty-http.git</developerConnection>
45+
<connection>scm:git:https://github.com/cdapio/netty-http.git</connection>
46+
<url>https://github.com/cdapio/netty-http.git</url>
47+
<developerConnection>scm:git:git@github.com:cdapio/netty-http.git</developerConnection>
4848
</scm>
4949

5050
<distributionManagement>
@@ -239,10 +239,11 @@
239239
<plugin>
240240
<groupId>org.apache.felix</groupId>
241241
<artifactId>maven-bundle-plugin</artifactId>
242+
<version>4.1.0</version>
242243
<extensions>true</extensions>
243244
<configuration>
244245
<instructions>
245-
<Bundle-Vendor>Cask</Bundle-Vendor>
246+
<Bundle-Vendor>CDAP</Bundle-Vendor>
246247
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
247248
<Export-Package>co.cask.http.*;version="1.0.0"</Export-Package>
248249
<Import-Package>

src/main/java/co/cask/http/AbstractHandlerHook.java renamed to src/main/java/io/cdap/http/AbstractHandlerHook.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2014-2017 Cask Data, Inc.
2+
* Copyright © 2014-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,9 +14,9 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

19-
import co.cask.http.internal.HandlerInfo;
19+
import io.cdap.http.internal.HandlerInfo;
2020
import io.netty.handler.codec.http.HttpRequest;
2121
import io.netty.handler.codec.http.HttpResponseStatus;
2222

src/main/java/co/cask/http/AbstractHttpHandler.java renamed to src/main/java/io/cdap/http/AbstractHttpHandler.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2014-2017 Cask Data, Inc.
2+
* Copyright © 2014-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,11 +14,11 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

19-
import co.cask.http.internal.HttpResourceHandler;
20-
import co.cask.http.internal.InternalHttpResponder;
21-
import co.cask.http.internal.InternalHttpResponse;
19+
import io.cdap.http.internal.HttpResourceHandler;
20+
import io.cdap.http.internal.InternalHttpResponder;
21+
import io.cdap.http.internal.InternalHttpResponse;
2222
import io.netty.handler.codec.http.HttpRequest;
2323

2424
/**

src/main/java/co/cask/http/AbstractHttpResponder.java renamed to src/main/java/io/cdap/http/AbstractHttpResponder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2014-2017 Cask Data, Inc.
2+
* Copyright © 2014-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.buffer.ByteBuf;
2020
import io.netty.buffer.Unpooled;

src/main/java/co/cask/http/BodyConsumer.java renamed to src/main/java/io/cdap/http/BodyConsumer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2014-2017 Cask Data, Inc.
2+
* Copyright © 2014-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.buffer.ByteBuf;
2020

src/main/java/co/cask/http/BodyProducer.java renamed to src/main/java/io/cdap/http/BodyProducer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2015-2017 Cask Data, Inc.
2+
* Copyright © 2015-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.buffer.ByteBuf;
2020

src/main/java/co/cask/http/ChannelPipelineModifier.java renamed to src/main/java/io/cdap/http/ChannelPipelineModifier.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2017 Cask Data, Inc.
2+
* Copyright © 2017-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.channel.ChannelPipeline;
2020

src/main/java/co/cask/http/ChunkResponder.java renamed to src/main/java/io/cdap/http/ChunkResponder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2014-2017 Cask Data, Inc.
2+
* Copyright © 2014-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.buffer.ByteBuf;
2020

src/main/java/co/cask/http/ExceptionHandler.java renamed to src/main/java/io/cdap/http/ExceptionHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright © 2015-2017 Cask Data, Inc.
2+
* Copyright © 2015-2019 Cask Data, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
55
* use this file except in compliance with the License. You may obtain a copy of
@@ -14,7 +14,7 @@
1414
* the License.
1515
*/
1616

17-
package co.cask.http;
17+
package io.cdap.http;
1818

1919
import io.netty.handler.codec.http.HttpRequest;
2020
import io.netty.handler.codec.http.HttpResponseStatus;

0 commit comments

Comments
 (0)