|
Hibernate example source code file (pom.xml)
The Hibernate pom.xml source code<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Hibernate, Relational Persistence for Idiomatic Java ~ ~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as ~ indicated by the @author tags or express copyright attribution ~ statements applied by the authors. All third-party contributions are ~ distributed under license by Red Hat Inc. ~ ~ This copyrighted material is made available to anyone wishing to use, modify, ~ copy, or redistribute it subject to the terms and conditions of the GNU ~ Lesser General Public License, as published by the Free Software Foundation. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License ~ for more details. ~ ~ You should have received a copy of the GNU Lesser General Public License ~ along with this distribution; if not, write to: ~ Free Software Foundation, Inc. ~ 51 Franklin Street, Fifth Floor ~ Boston, MA 02110-1301 USA --> <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 <groupId>org.hibernate.tutorials <artifactId>hibernate-tutorials <version>@VERSION@ <packaging>pom <name>Hibernate Getting Started Guide Tutorials <description>Aggregator for the Hibernate tutorials presented in the Getting Started Guide <properties> <!-- Skip artifact deployment --> <maven.deploy.skip>true </properties> <modules> <module>basic <module>annotations <module>entitymanager <module>envers </modules> <dependencies> <dependency> <groupId>org.hibernate <artifactId>hibernate-core <version>@VERSION@ </dependency> <!-- Hibernate uses jboss-logging for logging, for the tutorials we will use the sl4fj-simple backend --> <dependency> <groupId>org.slf4j <artifactId>slf4j-simple <version>1.6.1 </dependency> <!-- The tutorials use JUnit test cases to illustrate usage --> <dependency> <groupId>junit <artifactId>junit <version>4.8.1 </dependency> <!-- The tutorials use the H2 in-memory database --> <dependency> <groupId>com.h2database <artifactId>h2 <version>1.2.140 </dependency> </dependencies> <build> <testResources> <testResource> <filtering>false <directory>src/main/java <includes> <include>**/*.xml </includes> </testResource> <testResource> <filtering>true <directory>src/test/resources </testResource> </testResources> </build> </project> Other Hibernate examples (source code examples)Here is a short list of links related to this Hibernate pom.xml source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.