File tree 3 files changed +37
-37
lines changed
src/main/java/com/signalfx/signalflow/client/connection
3 files changed +37
-37
lines changed Original file line number Diff line number Diff line change 31
31
</developer >
32
32
</developers >
33
33
34
- <profiles >
35
- <profile >
36
- <id >release-sign-artifacts</id >
37
- <build >
38
- <plugins >
39
- <plugin >
40
- <groupId >org.sonatype.plugins</groupId >
41
- <artifactId >nexus-staging-maven-plugin</artifactId >
42
- <version >1.6.13</version >
43
- <extensions >true</extensions >
44
- <configuration >
45
- <serverId >ossrh</serverId >
46
- <nexusUrl >https://oss.sonatype.org/</nexusUrl >
47
- <autoReleaseAfterClose >true</autoReleaseAfterClose >
48
- </configuration >
49
- </plugin >
50
- <plugin >
51
- <groupId >org.apache.maven.plugins</groupId >
52
- <artifactId >maven-gpg-plugin</artifactId >
53
- <version >3.2.4</version >
54
- <executions >
55
- <execution >
56
- <id >sign-artifacts</id >
57
- <phase >verify</phase >
58
- <goals >
59
- <goal >sign</goal >
60
- </goals >
61
- </execution >
62
- </executions >
63
- </plugin >
64
- </plugins >
65
- </build >
66
- </profile >
67
- </profiles >
68
-
69
34
<modules >
70
35
<module >signalflow-client</module >
71
36
</modules >
Original file line number Diff line number Diff line change 13
13
<groupId >com.signalfx.public</groupId >
14
14
<artifactId >signalflow-client</artifactId >
15
15
<name >SignalFlow Client</name >
16
- <version >1.0.0-beta2 </version >
16
+ <version >1.0.0-beta3 </version >
17
17
<description >
18
18
SignalFx functionality to support signalflow
19
19
</description >
113
113
</repository >
114
114
</distributionManagement >
115
115
116
+ <profiles >
117
+ <profile >
118
+ <id >release-sign-artifacts</id >
119
+ <build >
120
+ <plugins >
121
+ <plugin >
122
+ <groupId >org.sonatype.plugins</groupId >
123
+ <artifactId >nexus-staging-maven-plugin</artifactId >
124
+ <version >1.6.13</version >
125
+ <extensions >true</extensions >
126
+ <configuration >
127
+ <serverId >ossrh</serverId >
128
+ <nexusUrl >https://oss.sonatype.org/</nexusUrl >
129
+ <autoReleaseAfterClose >true</autoReleaseAfterClose >
130
+ </configuration >
131
+ </plugin >
132
+ <plugin >
133
+ <groupId >org.apache.maven.plugins</groupId >
134
+ <artifactId >maven-gpg-plugin</artifactId >
135
+ <version >3.2.4</version >
136
+ <executions >
137
+ <execution >
138
+ <id >sign-artifacts</id >
139
+ <phase >verify</phase >
140
+ <goals >
141
+ <goal >sign</goal >
142
+ </goals >
143
+ </execution >
144
+ </executions >
145
+ </plugin >
146
+ </plugins >
147
+ </build >
148
+ </profile >
149
+ </profiles >
150
+
116
151
<build >
117
152
<pluginManagement >
118
153
<plugins >
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public abstract class AbstractHttpReceiverConnection {
27
27
protected static final Logger log = LoggerFactory .getLogger (AbstractHttpReceiverConnection .class );
28
28
29
29
// Do not modify this line. It is auto replaced to a version number.
30
- public static final String VERSION_NUMBER = "1.0.0-beta2 " ;
30
+ public static final String VERSION_NUMBER = "1.0.0-beta3 " ;
31
31
public static final String USER_AGENT = "SignalFx-java-client/" + VERSION_NUMBER ;
32
32
public static final String DISABLE_COMPRESSION_PROPERTY = "com.signalfx.public.java.disableHttpCompression" ;
33
33
You can’t perform that action at this time.
0 commit comments