Skip to content

Commit 1a88e7c

Browse files
authored
fix: Downgrade maven-jar-plugin version (#22832)
1 parent 91ed54c commit 1a88e7c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

dhis-2/dhis-api/src/main/java/org/hisp/dhis/user/User.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,10 @@ public class User extends BaseIdentifiableObject implements MetadataObject {
9797
/** Required. Will be stored as a hash. */
9898
private String password;
9999

100+
/** 2FA secret. */
100101
private String secret;
101102

103+
/** Type of 2FA authentication. */
102104
private TwoFactorType twoFactorType;
103105

104106
/** Date when password was changed. */
@@ -116,7 +118,7 @@ public class User extends BaseIdentifiableObject implements MetadataObject {
116118
/** List of previously used passwords. */
117119
private List<String> previousPasswords = new ArrayList<>();
118120

119-
/** Date of the user's last login. */
121+
/** Date of last login of user account. */
120122
private Date lastLogin;
121123

122124
/** The token used for a user account restore. Will be stored as a hash. */

dhis-2/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@
243243
<maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version>
244244
<maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
245245
<maven-enforcer-plugin.version>3.6.1</maven-enforcer-plugin.version>
246-
<maven-jar-plugin.version>3.5.0</maven-jar-plugin.version>
246+
<maven-jar-plugin.version>3.4.2</maven-jar-plugin.version>
247247
<maven-dependency-plugin.version>3.8.1</maven-dependency-plugin.version>
248248
<restrict-imports-enforcer.version>2.6.1</restrict-imports-enforcer.version>
249249
<versions-maven-plugin.version>2.20.1</versions-maven-plugin.version>

0 commit comments

Comments
 (0)