Renamed an integration-test to test for whitespaces in the filename
[hibernate4-maven-plugin] / src / it / dependency-test / h4mp / pom.xml
diff --git a/src/it/dependency-test/h4mp/pom.xml b/src/it/dependency-test/h4mp/pom.xml
deleted file mode 100644 (file)
index 4e179d2..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-<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>
-       <groupId>de.cege</groupId>
-       <artifactId>h4mp</artifactId>
-       <version>0.0.1-SNAPSHOT</version>
-       <packaging>war</packaging>
-       <name>h4mp</name>
-
-       <dependencies>
-               <dependency>
-                       <groupId>javax</groupId>
-                       <artifactId>javaee-api</artifactId>
-                       <version>7.0</version>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.hibernate</groupId>
-                       <artifactId>hibernate-envers</artifactId>
-                       <version>4.3.5.Final</version>
-               </dependency>
-
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>4.8.2</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.derby</groupId>
-                       <artifactId>derby</artifactId>
-                       <version>10.10.1.1</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.hibernate</groupId>
-                       <artifactId>hibernate-entitymanager</artifactId>
-                       <version>4.3.5.Final</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.slf4j</groupId>
-                       <artifactId>slf4j-simple</artifactId>
-                       <version>1.5.8</version>
-                       <scope>test</scope>
-               </dependency>
-
-               <dependency>
-                       <groupId>de.cege</groupId>
-                       <artifactId>dependent</artifactId>
-                       <version>0.0.1</version>
-               </dependency>
-       </dependencies>
-       <properties>
-               <maven.compiler.source>1.7</maven.compiler.source>
-               <maven.compiler.target>1.7</maven.compiler.target>
-               <failOnMissingWebXml>false</failOnMissingWebXml>
-       </properties>
-
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>de.juplo</groupId>
-                               <artifactId>hibernate4-maven-plugin</artifactId>
-                               <version>@project.version@</version>
-                               <executions>
-                                       <execution>
-                                               <goals>
-                                                       <goal>export</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                               <configuration>
-                                       <target>NONE</target>
-                                       <envers>true</envers>
-                                       <format>true</format>
-                                       <delimiter>;</delimiter>
-                                       <force>true</force>
-                                       <type>CREATE</type>
-                                       <hibernateDialect>org.hibernate.dialect.PostgreSQL9Dialect</hibernateDialect>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
-</project>