Skip to content

Commit

Permalink
Update dependencies #3282
Browse files Browse the repository at this point in the history
  • Loading branch information
gorbunkov committed Nov 1, 2022
1 parent fb7d6be commit d7f3a12
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ configure(globalModule) {
compile(bom['org.json:json'])
compile(bom['com.google.code.gson:gson'])
compile(bom['org.hibernate.validator:hibernate-validator'])
compile(bom['org.glassfish:javax.el'])
compile(bom['org.glassfish:jakarta.el'])
compile(bom['org.mindrot:jbcrypt'])

compile(bom['javax.inject:javax.inject'])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ protected void initAppContext() {
String configProperty = AppContext.getProperty(AbstractAppContextLoader.SPRING_CONTEXT_CONFIG);

StringTokenizer tokenizer = new StringTokenizer(configProperty);
List<String> locations = tokenizer.getTokenList();
List<String> locations = new ArrayList<>(tokenizer.getTokenList());
String springConfig = getSpringConfig();
if (!Strings.isNullOrEmpty(springConfig) && !locations.contains(springConfig)) {
locations.add(springConfig);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ class AllDataEventsTest extends Specification {
listener.allEvents[i++].message == 'AfterInsertEntityListener'
listener.allEvents[i++].message == 'JPA PostPersist'
listener.allEvents[i++].message == 'EntityChangedEvent: beforeCommit, CREATED'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, CREATED'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, CREATED'

cleanup:

Expand Down Expand Up @@ -114,8 +114,8 @@ class AllDataEventsTest extends Specification {
listener.allEvents[i++].message == 'AfterUpdateEntityListener'
listener.allEvents[i++].message == 'JPA PostUpdate'
listener.allEvents[i++].message == 'EntityChangedEvent: beforeCommit, UPDATED'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, UPDATED'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, UPDATED'

cleanup:

Expand Down Expand Up @@ -146,8 +146,8 @@ class AllDataEventsTest extends Specification {
listener.allEvents[i++].message == 'AfterDeleteEntityListener'
listener.allEvents[i++].message == 'JPA PostUpdate'
listener.allEvents[i++].message == 'EntityChangedEvent: beforeCommit, DELETED'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, DELETED'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, DELETED'

cleanup:

Expand Down Expand Up @@ -221,10 +221,10 @@ class AllDataEventsTest extends Specification {
then:

listener.allEvents[i++].message == 'BeforeCommitTransactionListener'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, CREATED'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, UPDATED'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, DELETED'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'

cleanup:

Expand Down Expand Up @@ -280,8 +280,8 @@ class AllDataEventsTest extends Specification {
then:

listener.allEvents[i++].message == 'BeforeCommitTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, UPDATED'
listener.allEvents[i++].message == 'AfterCompleteTransactionListener'
listener.allEvents[i++].message == 'EntityChangedEvent: afterCommit, UPDATED'

cleanup:

Expand Down
12 changes: 6 additions & 6 deletions modules/global/src/com/haulmont/cuba/bom.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ com.microsoft.sqlserver/mssql-jdbc = 7.2.2.jre8
mysql/mysql-connector-java = 8.0.17

org.apache.commons/commons-lang3 = 3.9
org.apache.commons/commons-text = 1.8
org.apache.commons/commons-text = 1.10.0
commons-io/commons-io = 2.6
commons-cli/commons-cli = 1.4
commons-codec/commons-codec = 1.13
Expand Down Expand Up @@ -81,7 +81,7 @@ org.jgroups/jgroups = 4.1.8.Final
org.aspectj/aspectjrt = 1.9.4
org.aspectj/aspectjweaver = 1.9.4
org.jmockit/jmockit = 1.48
junit/junit = 4.12
junit/junit = 4.13.2
org.junit.jupiter/junit-jupiter-api = 5.5.2
org.junit.vintage/junit-vintage-engine = 5.5.2
org.junit.jupiter/junit-jupiter-engine = 5.5.2
Expand All @@ -92,7 +92,7 @@ com.fifesoft/rsyntaxtextarea = 2.5.6
org.javassist/javassist = 3.24.0-GA

org.hibernate.validator/hibernate-validator = 6.1.5.Final
org.glassfish/javax.el = 3.0.1-b10
org.glassfish/jakarta.el = 3.0.4

com.vaadin = 8.14.3-1-cuba
com.vaadin/vaadin-server = ${com.vaadin}
Expand All @@ -104,7 +104,7 @@ com.vaadin/vaadin-push = ${com.vaadin}
com.vaadin/vaadin-compatibility-server = ${com.vaadin}
com.vaadin/vaadin-compatibility-client = ${com.vaadin}

org.springframework = 5.2.20.RELEASE
org.springframework = 5.3.23
org.springframework/spring-core = ${org.springframework}
org.springframework/spring-beans = ${org.springframework}
org.springframework/spring-context = ${org.springframework}
Expand All @@ -115,13 +115,13 @@ org.springframework/spring-tx = ${org.springframework}
org.springframework/spring-webmvc = ${org.springframework}
org.springframework/spring-jdbc = ${org.springframework}

org.springframework.security = 5.2.11.RELEASE
org.springframework.security = 5.5.8
org.springframework.security/spring-security-core = ${org.springframework.security}
org.springframework.security/spring-security-web = ${org.springframework.security}
org.springframework.security/spring-security-config = ${org.springframework.security}
org.springframework.security/spring-security-taglibs = ${org.springframework.security}

org.springframework.ldap/spring-ldap-core = 2.3.2.RELEASE
org.springframework.ldap/spring-ldap-core = 2.3.8.RELEASE

org.thymeleaf = 3.0.11.RELEASE
org.thymeleaf/thymeleaf = ${org.thymeleaf}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ protected void initAppContext() {
String configProperty = AppContext.getProperty(AbstractAppContextLoader.SPRING_CONTEXT_CONFIG);

StringTokenizer tokenizer = new StringTokenizer(configProperty);
List<String> locations = tokenizer.getTokenList();
List<String> locations = new ArrayList<>(tokenizer.getTokenList());

StringTokenizer configTokenizer = new StringTokenizer(getSpringConfig());
locations.addAll(configTokenizer.getTokenList());
Expand Down

0 comments on commit d7f3a12

Please sign in to comment.