Skip to content

Commit 741fe69

Browse files
authored
Move signing to the right pom.xml (#8)
* Move signing to the right pom.xml * Bump beta version
1 parent 03c8a2e commit 741fe69

File tree

3 files changed

+37
-37
lines changed

3 files changed

+37
-37
lines changed

pom.xml

-35
Original file line numberDiff line numberDiff line change
@@ -31,41 +31,6 @@
3131
</developer>
3232
</developers>
3333

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-
6934
<modules>
7035
<module>signalflow-client</module>
7136
</modules>

signalflow-client/pom.xml

+36-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<groupId>com.signalfx.public</groupId>
1414
<artifactId>signalflow-client</artifactId>
1515
<name>SignalFlow Client</name>
16-
<version>1.0.0-beta2</version>
16+
<version>1.0.0-beta3</version>
1717
<description>
1818
SignalFx functionality to support signalflow
1919
</description>
@@ -113,6 +113,41 @@
113113
</repository>
114114
</distributionManagement>
115115

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+
116151
<build>
117152
<pluginManagement>
118153
<plugins>

signalflow-client/src/main/java/com/signalfx/signalflow/client/connection/AbstractHttpReceiverConnection.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public abstract class AbstractHttpReceiverConnection {
2727
protected static final Logger log = LoggerFactory.getLogger(AbstractHttpReceiverConnection.class);
2828

2929
// 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";
3131
public static final String USER_AGENT = "SignalFx-java-client/" + VERSION_NUMBER;
3232
public static final String DISABLE_COMPRESSION_PROPERTY = "com.signalfx.public.java.disableHttpCompression";
3333

0 commit comments

Comments
 (0)