hibernate3-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.codehaus.mojo</groupId> <artifactId>hibernate3-maven-plugin</artifactId> <version>3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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. --> <!-- $Id$ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.mojo</groupId> <artifactId>mojo-parent</artifactId> <version>29</version> </parent> <groupId>org.codehaus.mojo</groupId> <artifactId>hibernate3-maven-plugin</artifactId> <version>3.0</version> <packaging>maven-plugin</packaging> <name>Hibernate3 Maven Plugin</name> <description> Hibernate Tools is a toolset for Hibernate 3 and related projects. The tools provide Maven plugins for performing reverse engineering, code generation and interaction with Hibernate. </description> <url>http://mojo.codehaus.org/hibernate3-maven-plugin/</url> <inceptionYear>2005</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:svn:http://svn.codehaus.org/mojo/tags/hibernate3-maven-plugin-3.0</connection> <developerConnection>scm:svn:https://svn.codehaus.org/mojo/tags/hibernate3-maven-plugin-3.0</developerConnection> <url>http://svn.codehaus.org/mojo/tags/hibernate3-maven-plugin-3.0</url> </scm> <issueManagement> <system>jira</system> <url>http://jira.codehaus.org/browse/MHIBERNATE</url> </issueManagement> <developers> <developer> <id>jreyes</id> <name>Johann Reyes</name> <email>jreyes@vaporwarecorp.com</email> <timezone>-5</timezone> <roles> <role>Maintainer</role> </roles> </developer> <developer> <id>tobrien</id> <name>Tim O'Brien</name> <email>tobrien@discursive.com</email> <timezone>-6</timezone> <roles> <role>Developer</role> </roles> </developer> </developers> <contributors> <contributor> <name>David J. M. Karlsen</name> <email>david@codehaus.org</email> <organization>Codehaus</organization> <organizationUrl>http://www.codehaus.org</organizationUrl> <timezone>1</timezone> <url>http://www.davidkarlsen.com</url> <roles> <role>contributor</role> </roles> </contributor> </contributors> <build> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <phase>validate</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>[1.5,)</version> </requireJavaVersion> <requireMavenVersion> <version>[2.2.1,)</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <!-- Hibernate Dependencies --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-tools</artifactId> <version>3.2.4.GA</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.6.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>1.6.1</version> <scope>runtime</scope> </dependency> <!-- Maven Dependencies --> <dependency> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.6</version> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> <version>2.0.5</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven.version}</version> <optional>true</optional> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-changes-plugin</artifactId> <version>2.6</version> <configuration> <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate> </configuration> <reportSets> <reportSet> <reports> <report>changes-report</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting> <profiles> <profile> <id>run-its</id> <activation> <property> <name>skipTests</name> <value>!true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-invoker-plugin</artifactId> <version>1.5</version> <configuration> <debug>true</debug> <postBuildHookScript>verify</postBuildHookScript> <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath> <goals> <goal>clean</goal> <goal>package</goal> </goals> <settingsFile>src/it/settings.xml</settingsFile> <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> <filterProperties> <hibernate-core.version>${hibernate-core.version}</hibernate-core.version> <hibernate-entitymanager.version>${hibernate-entitymanager.version}</hibernate-entitymanager.version> </filterProperties> </configuration> <executions> <execution> <id>integration-test</id> <goals> <goal>install</goal> <goal>run</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <properties> <maven.version>2.2.1</maven.version> <mojo.java.target>1.5</mojo.java.target> <hibernate-core.version>3.3.2.GA</hibernate-core.version> <hibernate-entitymanager.version>3.3.2.GA</hibernate-entitymanager.version> </properties> </project>