maven-datanucleus-plugin не может улучшить классы

Я получаю следующее в конце datanucleus:enhance шаг:

DataNucleus Enhancer completed with success for 0 classes. Timings : input=103 ms, enhance=0 ms, total=103 ms. Consult the log for full details
DataNucleus Enhancer completed and no classes were enhanced. Consult the log for full details

Я проверил, что целевой каталог указан в CLASSPATH: WEB-INF/classes

Отдельные файлы классов присутствуют в WEB-INF/classes/com/company/*/*.class

Вот объявление плагина:

        <plugin>
            <groupId>org.datanucleus</groupId>
            <artifactId>maven-datanucleus-plugin</artifactId>
            <version>3.2.0-m1</version>
            <configuration>
                <api>JDO</api>
                <props>${basedir}/datanucleus.properties</props>
                <verbose>true</verbose>
                <enhancerName>ASM</enhancerName>
            </configuration>
            <executions>
                <execution>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>enhance</goal>
                    </goals>
                </execution>
            </executions>
            <dependencies>
                <dependency>
                    <groupId>org.datanucleus</groupId>
                    <artifactId>datanucleus-api-jdo</artifactId>
                    <version>4.1.0-m1</version>
                </dependency>
            </dependencies>
        </plugin>

Почему модуль расширения datanucleus не распознает файлы классов, даже если CLASSPATH верен?

0 ответов

Другие вопросы по тегам