Maven: не удается найти символ [ОШИБКА] символ: метод - PullRequest
0 голосов
/ 28 сентября 2018

У меня есть проект с несколькими модулями, как указано ниже

  • Модуль A
  • Модуль B зависит от A
  • Модуль C зависит от B
  • Тесты модуля C, унаследованные от тестов модуля B
  • Модуль D зависит от модуля C
  • Тесты модуля D зависят от тестов C (тест модуля C зависит от модуля B)

«mvn clean install» работает для модуля A, B, C., но не для модуля D. Получение следующей ошибки на модуле D

[ОШИБКА] "" /ExceptionTest.java:[38, 7] не может найти символ

[ОШИБКА] символ: метод setMethodPath ()

Мои помпы, как показано ниже

Parent pom.xml

  <dependencyManagement>
        <dependency>
            <groupId>grpid</groupId>
            <artifactId>B</artifactId>
            <version>${project.version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>grpid</groupId>
            <artifactId>B</artifactId>
            <version>${project.version}</version>
        </dependency>
           declared here Module A, B ,C and thier test-jars
    </dependencies>
</dependencyManagement>
.....
<pluginManagement>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>3.0.0</version>
                <executions>
                    <execution>
                        <id>test-jar</id>
                        <goals>
                            <goal>test-jar</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>default-jar</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                        <configuration>
                            <excludes>

                                <exclude>**/*.bat</exclude>
                            </excludes>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </pluginManagement>

Модуль B pom.xml

 <dependencies>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>A</artifactId>
    </dependency>

Модуль C pom.xml

 <dependencies>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>B</artifactId>
    </dependency>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>B</artifactId>
        <type>test-jar</type>
        <scope>import</scope> or <scope>test</scope>
    </dependency>

Модуль D pom.xml

 <dependencies>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>C</artifactId>
    </dependency>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>C</artifactId>
        <type>test-jar</type>
        <scope>import</scope> or <scope>test</scope>
    </dependency>

В модуле D тестовые классы не могут найти тестовые классы из модуля B

Используются обе области импорта или тестирования, но не повезло.

пробовал модуль Cкак это тоже, но не Luck.

Модуль D pom.xml

 <dependencies>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>C</artifactId>
    </dependency>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>C</artifactId>
        <type>test-jar</type>
        <scope>import</scope> or <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>B</artifactId>
    </dependency>
    <dependency>
        <groupId>grpid</groupId>
        <artifactId>B</artifactId>
        <type>test-jar</type>
        <scope>import</scope> or <scope>test</scope>
    </dependency>

Пожалуйста, помогите

Решено

...