pom.xml 1.89 KB
<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>fi.codecrew.moya</groupId>
  <artifactId>moya-database</artifactId>
  <version>0.2.0</version>
  <build>
    <sourceDirectory>src</sourceDirectory>
    <resources>
      <resource>
        <directory>src</directory>
        <excludes>
          <exclude>**/*.java</exclude>
        </excludes>
      </resource>
    </resources>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.7</source>
          <target>1.7</target>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
  	<dependency>
  		<groupId>fi.codecrew.moya</groupId>
  		<artifactId>moya-utils</artifactId>
  		<version>0.2.0</version>
  	</dependency>
  	<dependency>
  		<groupId>org.ancoron.postgresql</groupId>
  		<artifactId>org.ancoron.postgresql.jpa</artifactId>
  		<version>9.1.901.jdbc4.1-rc9</version>
  		<exclusions>
  			<exclusion>
  				<artifactId>javax.persistence</artifactId>
  				<groupId>org.eclipse.persistence</groupId>
  			</exclusion>
  			<exclusion>
  				<artifactId>org.eclipse.persistence.osgi</artifactId>
  				<groupId>org.eclipse.persistence</groupId>
  			</exclusion>
  			<exclusion>
  				<artifactId>org.eclipse.persistence.core</artifactId>
  				<groupId>org.eclipse.persistence</groupId>
  			</exclusion>
  			<exclusion>
  				<artifactId>org.postgresql</artifactId>
  				<groupId>org.ancoron.postgresql</groupId>
  			</exclusion>
  			<exclusion>
  				<artifactId>org.postgresql.net</artifactId>
  				<groupId>org.ancoron.postgresql</groupId>
  			</exclusion>
  		</exclusions>
  	</dependency>
  </dependencies>
</project>