Skip to content

Commit 8a75602

Browse files
committed
Fix publishing
1 parent 0804807 commit 8a75602

File tree

3 files changed

+39
-9
lines changed

3 files changed

+39
-9
lines changed

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ subprojects {
2323
testCompile 'org.mockito:mockito-core:1.8.5'
2424
testRuntime 'org.slf4j:slf4j-simple:1.7.12'
2525
}
26+
}
2627

27-
// support for snapshot/final releases via versioned branch names like 1.x
28-
nebulaRelease {
29-
addReleaseBranchPattern(/\d+\.\d+\.\d+/)
30-
addReleaseBranchPattern('HEAD')
31-
}
32-
33-
if (project.hasProperty('release.useLastTag')) {
34-
tasks.prepare.enabled = false
35-
}
28+
// support for snapshot/final releases via versioned branch names like 1.x
29+
nebulaRelease {
30+
addReleaseBranchPattern(/\d+\.\d+\.\d+/)
31+
addReleaseBranchPattern('HEAD')
3632
}
33+
34+
if (project.hasProperty('release.useLastTag')) {
35+
tasks.prepare.enabled = false
36+
}

reactivesocket-jsr-356/src/main/java/io/reactivesocket/javax/websocket/client/WebSocketReactiveSocketFactory.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2016 Netflix, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.reactivesocket.javax.websocket.client;
217

318
import io.reactivesocket.ConnectionSetupPayload;

reactivesocket-netty/src/main/java/io/reactivesocket/netty/websocket/client/WebSocketReactiveSocketFactory.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/**
2+
* Copyright 2016 Netflix, Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package io.reactivesocket.netty.websocket.client;
217

318
import io.netty.channel.EventLoopGroup;

0 commit comments

Comments
 (0)