Explained how to suppress dependency-scanning in documentation
[hibernate4-maven-plugin] / src / it / ignored-dependency / main / 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>main</artifactId>
7   <version>1</version>
8   <packaging>jar</packaging>
9   <name>main</name>
10
11   <dependencies>
12     <dependency>
13       <groupId>org.hibernate</groupId>
14       <artifactId>hibernate-core</artifactId>
15       <version>4.3.5.Final</version>
16     </dependency>
17     <dependency>
18       <groupId>de.juplo</groupId>
19       <artifactId>ignored</artifactId>
20       <version>1</version>
21     </dependency>
22   </dependencies>
23
24   <properties>
25     <maven.compiler.source>1.7</maven.compiler.source>
26     <maven.compiler.target>1.7</maven.compiler.target>
27   </properties>
28
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>de.juplo</groupId>
33         <artifactId>hibernate4-maven-plugin</artifactId>
34         <version>@project.version@</version>
35         <executions>
36           <execution>
37             <goals>
38               <goal>export</goal>
39             </goals>
40           </execution>
41         </executions>
42         <configuration>
43           <target>NONE</target>
44           <format>true</format>
45           <type>CREATE</type>
46           <hibernateDialect>org.hibernate.dialect.PostgreSQL9Dialect</hibernateDialect>
47           <scanDependencies>none</scanDependencies>
48         </configuration>
49       </plugin>
50     </plugins>
51   </build>
52
53 </project>