Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exo.core.component.organization.api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.meeds.core</groupId>
<artifactId>core-parent</artifactId>
<version>7.2.x-exo-SNAPSHOT</version>
<version>7.2.x-maintenance-SNAPSHOT</version>
</parent>
<artifactId>exo.core.component.organization.api</artifactId>
<name>Meeds:: PLF Core :: Component :: Organization Service API</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ private void initializeDataDeleteScheduledJob() throws Exception {
}

private void initializeQueueProcessingScheduledJob() throws Exception {
if (StringUtils.isBlank(scheduledDataImportJobCronExpression)) {
if (StringUtils.isBlank(scheduledQueueProcessingJobCronExpression)) {
LOG.warn("Can't initialize Cron Job for IDM Queue Processing, the cron expression is empty");
return;
}
Expand All @@ -1050,7 +1050,7 @@ private void initializeQueueProcessingScheduledJob() throws Exception {
properties.setProperty("jobName", "IDM.QUEUE");
properties.setProperty("groupName", "PORTAL.IDM");
properties.setProperty("job", IDMQueueProcessorJob.class.getName());
properties.setProperty("expression", scheduledDataImportJobCronExpression);
properties.setProperty("expression", scheduledQueueProcessingJobCronExpression);
params.addParam(properties);
jobSchedulerService.addCronJob(new CronJob(params));
}
Expand Down
2 changes: 1 addition & 1 deletion exo.core.component.security.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>io.meeds.core</groupId>
<artifactId>core-parent</artifactId>
<version>7.2.x-exo-SNAPSHOT</version>
<version>7.2.x-maintenance-SNAPSHOT</version>
</parent>

<artifactId>exo.core.component.security.core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

<groupId>io.meeds.core</groupId>
<artifactId>core-parent</artifactId>
<version>7.2.x-exo-SNAPSHOT</version>
<version>7.2.x-maintenance-SNAPSHOT</version>
<packaging>pom</packaging>

<name>Meeds:: PLF:: Core</name>
<description>Exoplatform SAS 'eXo Core' project.</description>

<properties>
<io.meeds.kernel.version>7.2.x-exo-SNAPSHOT</io.meeds.kernel.version>
<io.meeds.kernel.version>7.2.x-maintenance-SNAPSHOT</io.meeds.kernel.version>

<!-- Sonar properties -->
<sonar.organization>meeds-io</sonar.organization>
Expand Down