Skip to content

Commit

Permalink
Set version to 4.5.2-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Dec 13, 2023
1 parent a8cd778 commit f2ce654
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@
</parent>

<artifactId>vertx-auth</artifactId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>

<name>Vert.x Auth</name>

<properties>
<stack.version>4.5.1</stack.version>
<stack.version>4.5.2-SNAPSHOT</stack.version>
<doc.skip>true</doc.skip>
<jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JDBCAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authenticationQuery":
Expand Down Expand Up @@ -59,11 +59,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(JDBCAuthOptions obj, JsonObject json) {
static void toJson(JDBCAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(JDBCAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(JDBCAuthOptions obj, java.util.Map<String, Object> json) {
if (obj.getAuthenticationQuery() != null) {
json.put("authenticationQuery", obj.getAuthenticationQuery());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JDBCAuthenticationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthenticationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthenticationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "authenticationQuery":
Expand All @@ -29,11 +29,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(JDBCAuthenticationOptions obj, JsonObject json) {
static void toJson(JDBCAuthenticationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(JDBCAuthenticationOptions obj, java.util.Map<String, Object> json) {
static void toJson(JDBCAuthenticationOptions obj, java.util.Map<String, Object> json) {
if (obj.getAuthenticationQuery() != null) {
json.put("authenticationQuery", obj.getAuthenticationQuery());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class JDBCAuthorizationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthorizationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, JDBCAuthorizationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "permissionsQuery":
Expand All @@ -34,11 +34,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(JDBCAuthorizationOptions obj, JsonObject json) {
static void toJson(JDBCAuthorizationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(JDBCAuthorizationOptions obj, java.util.Map<String, Object> json) {
static void toJson(JDBCAuthorizationOptions obj, java.util.Map<String, Object> json) {
if (obj.getPermissionsQuery() != null) {
json.put("permissionsQuery", obj.getPermissionsQuery());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-mongo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<artifactId>vertx-auth</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MongoAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "collectionName":
Expand Down Expand Up @@ -79,11 +79,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(MongoAuthOptions obj, JsonObject json) {
static void toJson(MongoAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(MongoAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(MongoAuthOptions obj, java.util.Map<String, Object> json) {
if (obj.getCollectionName() != null) {
json.put("collectionName", obj.getCollectionName());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MongoAuthenticationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthenticationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthenticationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "collectionName":
Expand Down Expand Up @@ -49,11 +49,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(MongoAuthenticationOptions obj, JsonObject json) {
static void toJson(MongoAuthenticationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(MongoAuthenticationOptions obj, java.util.Map<String, Object> json) {
static void toJson(MongoAuthenticationOptions obj, java.util.Map<String, Object> json) {
if (obj.getCollectionName() != null) {
json.put("collectionName", obj.getCollectionName());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MongoAuthorizationOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthorizationOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, MongoAuthorizationOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "collectionName":
Expand All @@ -44,11 +44,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(MongoAuthorizationOptions obj, JsonObject json) {
static void toJson(MongoAuthorizationOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(MongoAuthorizationOptions obj, java.util.Map<String, Object> json) {
static void toJson(MongoAuthorizationOptions obj, java.util.Map<String, Object> json) {
if (obj.getCollectionName() != null) {
json.put("collectionName", obj.getCollectionName());
}
Expand Down
2 changes: 1 addition & 1 deletion vertx-auth-shiro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<artifactId>vertx-auth</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.1</version>
<version>4.5.2-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ShiroAuthOptionsConverter {
private static final Base64.Decoder BASE64_DECODER = JsonUtil.BASE64_DECODER;
private static final Base64.Encoder BASE64_ENCODER = JsonUtil.BASE64_ENCODER;

public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, ShiroAuthOptions obj) {
static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json, ShiroAuthOptions obj) {
for (java.util.Map.Entry<String, Object> member : json) {
switch (member.getKey()) {
case "config":
Expand All @@ -34,11 +34,11 @@ public static void fromJson(Iterable<java.util.Map.Entry<String, Object>> json,
}
}

public static void toJson(ShiroAuthOptions obj, JsonObject json) {
static void toJson(ShiroAuthOptions obj, JsonObject json) {
toJson(obj, json.getMap());
}

public static void toJson(ShiroAuthOptions obj, java.util.Map<String, Object> json) {
static void toJson(ShiroAuthOptions obj, java.util.Map<String, Object> json) {
if (obj.getConfig() != null) {
json.put("config", obj.getConfig());
}
Expand Down

0 comments on commit f2ce654

Please sign in to comment.