Не найден плагин для префикса 'hibernate3' в текущем проекте - PullRequest
0 голосов
/ 05 июля 2019

Здравствуйте, я пытался выполнить скрипт sShell, но у меня есть эта проблема

Не найден плагин для префикса 'hibernate3' в текущем проекте и в группах плагинов [org.apache.maven.plugins, org.codehaus.mojo], доступных в репозиториях [local (/ opt / local / m2-repository) )

POM:

<profile>
            <id>hibernate</id>
            <activation>
                <property>
                    <name>hibernate</name>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>hibernate3-maven-plugin</artifactId>
                        <version>2.2</version>
                        <configuration>
                            <components>
                                <component>
                                    <name>hbm2ddl</name>
                                    <implementation>annotationconfiguration</implementation>
                                    <outputDirectory>${outputdir}</outputDirectory>
                                </component>
                                <component>
                                    <name>hbm2java</name>
                                    <outputDirectory>src/main/java</outputDirectory>
                                </component>
                            </components>
                            <componentProperties>
                                <drop>${drop}</drop>
                                <export>${export}</export>
                                <format>true</format>
                                <create>${create}</create>
                                <update>false</update>
                                <jdk5>true</jdk5>
                                <delimiter>|</delimiter>
                                <propertyfile>target/classes/jdbc${jdbc_suffix}.properties</propertyfile>
                                <outputfilename>${outputfile}</outputfilename>
                                <templatepath>src/main/resources/hibernate/templates</templatepath>
                            </componentProperties>
                        </configuration>
                        <dependencies>
                            <dependency>
                                <groupId>${jdbc.groupId}</groupId>
                                <artifactId>${jdbc.artifactId}</artifactId>
                                <version>${jdbc.version}</version>
                            </dependency>
                            <dependency>
                                <groupId>org.hibernate</groupId>
                                <artifactId>hibernate</artifactId>
                                <version>3.6.0-Final</version>
                                <exclusions>
                                    <exclusion>  <!-- declare the exclusion here -->
                                        <groupId>commons-logging</groupId>
                                        <artifactId>commons-logging-api</artifactId>
                                    </exclusion>
                                </exclusions>
                            </dependency>
                        </dependencies>
                    </plugin>
                </plugins>
            </build>
        </profile>

    </profiles>

Thnqs

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...