Skip to content

Commit dc2c78f

Browse files
committed
Minor update before release
1 parent 030063b commit dc2c78f

File tree

3 files changed

+94
-5
lines changed

3 files changed

+94
-5
lines changed

pom.xml

Lines changed: 91 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,97 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>in.erail</groupId>
66
<artifactId>api-framework</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>2.1</version>
88
<packaging>jar</packaging>
9+
<developers>
10+
<developer>
11+
<id>vinscom</id>
12+
<name>vinscom</name>
13+
</developer>
14+
</developers>
15+
<description>
16+
API Framework is structured code/pattern/project template for you to
17+
write API based system using Vertx Framework
18+
</description>
19+
<url>https://vinscom.github.io/api-framework-start/</url>
20+
<scm>
21+
<connection>scm:git:git@github.com:vinscom/api-framework.git</connection>
22+
<developerConnection>scm:git:git@github.com:vinscom/api-framework.git</developerConnection>
23+
<url>git@github.com:vinscom/api-framework.git</url>
24+
</scm>
25+
<licenses>
26+
<license>
27+
<name>The Apache Software License, Version 2.0</name>
28+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
29+
<distribution>repo</distribution>
30+
</license>
31+
</licenses>
32+
<profiles>
33+
<profile>
34+
<id>release</id>
35+
<build>
36+
<plugins>
37+
<plugin>
38+
<groupId>org.apache.maven.plugins</groupId>
39+
<artifactId>maven-source-plugin</artifactId>
40+
<version>2.4</version>
41+
<executions>
42+
<execution>
43+
<id>attach-sources</id>
44+
<goals>
45+
<goal>jar-no-fork</goal>
46+
</goals>
47+
</execution>
48+
</executions>
49+
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-javadoc-plugin</artifactId>
53+
<version>2.10.4</version>
54+
<executions>
55+
<execution>
56+
<id>attach-javadocs</id>
57+
<goals>
58+
<goal>jar</goal>
59+
</goals>
60+
</execution>
61+
</executions>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-gpg-plugin</artifactId>
66+
<version>1.6</version>
67+
<executions>
68+
<execution>
69+
<id>sign-artifacts</id>
70+
<phase>verify</phase>
71+
<goals>
72+
<goal>sign</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
<plugin>
78+
<groupId>org.sonatype.plugins</groupId>
79+
<artifactId>nexus-staging-maven-plugin</artifactId>
80+
<version>1.6.8</version>
81+
<extensions>true</extensions>
82+
<configuration>
83+
<serverId>ossrh</serverId>
84+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
85+
<autoReleaseAfterClose>false</autoReleaseAfterClose>
86+
</configuration>
87+
</plugin>
88+
</plugins>
89+
</build>
90+
<distributionManagement>
91+
<snapshotRepository>
92+
<id>ossrh</id>
93+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
94+
</snapshotRepository>
95+
</distributionManagement>
96+
</profile>
97+
</profiles>
998
<properties>
1099
<vertx-version>3.5.1</vertx-version>
11100
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -88,7 +177,7 @@
88177
<dependency>
89178
<groupId>in.erail</groupId>
90179
<artifactId>glue</artifactId>
91-
<version>1.0-SNAPSHOT</version>
180+
<version>2.1</version>
92181
</dependency>
93182
<dependency>
94183
<groupId>org.mockito</groupId>

src/main/java/in/erail/security/SecurityTools.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void startup() {
115115
/**
116116
* Unique string across cluster. Changes on each restart of cluster.
117117
*
118-
* @return
118+
* @return Globally unique string
119119
*/
120120
public String getGlobalUniqueString() {
121121
try {

src/main/java/io/vertx/reactivex/ext/web/handler/sockjs/BridgeEventContext.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public void setAddress(String pAddress) {
3030
/**
3131
* Unique event id set only during debug. And can be used for tracking
3232
* event
33-
* @return
33+
* @return event id
3434
*/
3535
public String getId() {
3636
return mId;
@@ -43,7 +43,7 @@ public void setId(String pId) {
4343
/**
4444
* Unique Key can be used for referring this event in external system(Like Redis).
4545
* Key changes whenever whole cluster is restarted.
46-
* @return
46+
* @return address key
4747
*/
4848
public String getAddressKey() {
4949
return mAddressKey;

0 commit comments

Comments
 (0)