blob: 24fc89780b24a72b68e2e99699f462b1fc19c699 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
apply from: "$rootDir/buildscripts/java-core.gradle"
apply from: "$rootDir/buildscripts/publishing.gradle"
apply from: "$rootDir/buildscripts/java-junit5.gradle"
apply from: "$rootDir/buildscripts/java-integration-test.gradle"
apply from: "$rootDir/buildscripts/java-test-fixtures.gradle"
dependencies {
annotationProcessor project(':ignite-network-annotation-processor')
implementation libs.jetbrains.annotations
implementation project(':ignite-core')
implementation project(':ignite-catalog')
implementation project(':ignite-raft-api')
implementation project(':ignite-raft')
implementation project(':ignite-replicator')
implementation project(':ignite-metastorage-api')
implementation project(':ignite-placement-driver-api')
implementation project(':ignite-partition-distribution')
implementation project(':ignite-distribution-zones')
implementation project(':ignite-network')
implementation project(':ignite-configuration-system')
implementation project(':ignite-schema')
implementation project(':ignite-transactions')
implementation project(':ignite-storage-api')
implementation project(':ignite-low-watermark')
implementation project(':ignite-workers')
testImplementation project(':ignite-cluster-management')
testImplementation project(':ignite-failure-handler')
testImplementation project(':ignite-table')
testImplementation project(':ignite-rocksdb-common')
testImplementation testFixtures(project(':ignite-catalog'))
testImplementation testFixtures(project(':ignite-configuration'))
testImplementation testFixtures(project(':ignite-core'))
testImplementation testFixtures(project(':ignite-low-watermark'))
testImplementation testFixtures(project(':ignite-metastorage'))
testImplementation testFixtures(project(':ignite-schema'))
testImplementation testFixtures(project(':ignite-storage-api'))
testImplementation testFixtures(project(':ignite-table'))
testImplementation testFixtures(project(':ignite-transactions'))
testImplementation testFixtures(project(':ignite-placement-driver-api'))
integrationTestImplementation testFixtures(project(':ignite-cluster-management'))
integrationTestImplementation testFixtures(project(':ignite-core'))
integrationTestImplementation testFixtures(project(':ignite-configuration'))
integrationTestImplementation testFixtures(project(':ignite-distribution-zones'))
integrationTestImplementation testFixtures(project(':ignite-failure-handler'))
integrationTestImplementation testFixtures(project(':ignite-metastorage'))
integrationTestImplementation testFixtures(project(':ignite-metrics'))
integrationTestImplementation testFixtures(project(':ignite-network'))
integrationTestImplementation testFixtures(project(':ignite-runner'))
integrationTestImplementation testFixtures(project(':ignite-storage-api'))
integrationTestImplementation testFixtures(project(':ignite-table'))
integrationTestImplementation testFixtures(project(':ignite-transactions'))
integrationTestImplementation project(':ignite-raft')
integrationTestImplementation project(':ignite-raft-api')
integrationTestImplementation project(':ignite-replicator')
integrationTestImplementation project(':ignite-metastorage-api')
integrationTestImplementation project(':ignite-metastorage')
integrationTestImplementation project(':ignite-vault')
integrationTestImplementation project(':ignite-transactions')
integrationTestImplementation project(':ignite-storage-api')
integrationTestImplementation project(':ignite-table')
integrationTestImplementation project(':ignite-distribution-zones')
integrationTestImplementation project(':ignite-cluster-management')
integrationTestImplementation project(':ignite-schema')
integrationTestImplementation project(':ignite-catalog')
integrationTestImplementation project(':ignite-catalog-compaction') // TODO https://issues.apache.org/jira/browse/IGNITE-22522
integrationTestImplementation project(':ignite-configuration')
integrationTestImplementation project(':ignite-configuration-root')
integrationTestImplementation project(':ignite-configuration-system')
integrationTestImplementation project(':ignite-low-watermark')
integrationTestImplementation project(':ignite-index')
integrationTestImplementation project(':ignite-failure-handler')
integrationTestImplementation project(':ignite-network')
integrationTestImplementation project(':ignite-storage-page-memory')
integrationTestImplementation project(':ignite-storage-rocksdb')
integrationTestImplementation project(':ignite-page-memory')
integrationTestImplementation project(':ignite-placement-driver')
integrationTestImplementation project(':ignite-partition-distribution')
integrationTestImplementation project(':ignite-runner')
integrationTestImplementation project(':ignite-system-disaster-recovery')
integrationTestImplementation project(':ignite-configuration-storage')
integrationTestImplementation project(':ignite-sql-engine-api') // TODO: IGNITE-22522 - remove.
integrationTestImplementation project(':ignite-sql-engine') // TODO: IGNITE-22522 - remove.
integrationTestImplementation project(':ignite-system-view-api') // TODO: IGNITE-22522 - remove.
integrationTestImplementation project(':ignite-system-view') // TODO: IGNITE-22522 - remove.
integrationTestImplementation project(':ignite-eventlog') // TODO: IGNITE-22522 - remove.
integrationTestImplementation libs.jetbrains.annotations
}
description = 'ignite-partition-replicator'