diff options
author | Fabrice Bellingard <bellingard@apache.org> | 2007-05-15 12:43:10 +0000 |
---|---|---|
committer | Fabrice Bellingard <bellingard@apache.org> | 2007-05-15 12:43:10 +0000 |
commit | 0f6e5f56cebea1de665f633ba493c5b1bd190875 (patch) | |
tree | 019f203397c39cc6f7fdaccc04dc4a331a1d724e /archiva-base/archiva-configuration | |
parent | 4f35d1c716641f69e2bc1c2ba4ec625a36605ecf (diff) | |
download | archiva-0f6e5f56cebea1de665f633ba493c5b1bd190875.tar.gz archiva-0f6e5f56cebea1de665f633ba493c5b1bd190875.zip |
[MRM-306] Changed the cron expressions so that they are valid ones
git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@538159 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-base/archiva-configuration')
-rw-r--r-- | archiva-base/archiva-configuration/src/main/resources/org/apache/maven/archiva/configuration/default-archiva.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archiva-base/archiva-configuration/src/main/resources/org/apache/maven/archiva/configuration/default-archiva.xml b/archiva-base/archiva-configuration/src/main/resources/org/apache/maven/archiva/configuration/default-archiva.xml index 2c70a37ef..d55396167 100644 --- a/archiva-base/archiva-configuration/src/main/resources/org/apache/maven/archiva/configuration/default-archiva.xml +++ b/archiva-base/archiva-configuration/src/main/resources/org/apache/maven/archiva/configuration/default-archiva.xml @@ -10,7 +10,7 @@ <releases>true</releases> <snapshots>false</snapshots> <indexed>true</indexed> - <refreshCronExpression>0 0 * * ?</refreshCronExpression> + <refreshCronExpression>0 0 0 * * ?</refreshCronExpression> </repository> <repository> <id>snapshots</id> @@ -20,7 +20,7 @@ <releases>false</releases> <snapshots>true</snapshots> <indexed>true</indexed> - <refreshCronExpression>0 0,30 * * ?</refreshCronExpression> + <refreshCronExpression>0 0,30 0 * * ?</refreshCronExpression> </repository> <repository> <id>central</id> @@ -151,7 +151,7 @@ </repositoryScanning> <databaseScanning> - <cronExpression>0 0 * * ?</cronExpression> + <cronExpression>0 0 0 * * ?</cronExpression> <unprocessedConsumers> <unprocessedConsumer>index-artifact</unprocessedConsumer> <unprocessedConsumer>update-db-project</unprocessedConsumer> |