Explained how to suppress dependency-scanning in documentation
[hibernate4-maven-plugin] / src / it / ignored-dependency / ignored / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4   <modelVersion>4.0.0</modelVersion>
5   <groupId>de.juplo</groupId>
6   <artifactId>ignored</artifactId>
7   <version>1</version>
8
9   <dependencies>
10     <dependency>
11       <groupId>org.hibernate</groupId>
12       <artifactId>hibernate-core</artifactId>
13       <version>4.3.5.Final</version>
14     </dependency>
15   </dependencies>
16
17   <properties>
18     <maven.compiler.source>1.7</maven.compiler.source>
19     <maven.compiler.target>1.7</maven.compiler.target>
20   </properties>
21
22 </project>