What is the maven equivalent of sourceSets used in gradle?

  Kiến thức lập trình

I would like to extend the question further from here: Add multiple source test directories for tests

What is the Maven Equivalent for the below gradle tag?

sourceSets{
    test {
        java.srcDirs = ['src/test/java/unit', 'src/test/java/intg']
    }
}

LEAVE A COMMENT