aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-01-05 17:24:07 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-01-05 17:24:07 +0100
commit24036ef94687300e98c742cfc268a2b5e9e87a88 (patch)
treefb6be2434919717b18234c0820d39d174c02a969 /pom.xml
parent7880fd60bb6ba5237d269a1b840a412c4438dd39 (diff)
downloadesper-testing-24036ef94687300e98c742cfc268a2b5e9e87a88.tar.gz
esper-testing-24036ef94687300e98c742cfc268a2b5e9e87a88.tar.bz2
esper-testing-24036ef94687300e98c742cfc268a2b5e9e87a88.tar.xz
esper-testing-24036ef94687300e98c742cfc268a2b5e9e87a88.zip
o Trying out dbdeploy.
Diffstat (limited to 'pom.xml')
-rwxr-xr-xpom.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 0224a0f..4406252 100755
--- a/pom.xml
+++ b/pom.xml
@@ -158,6 +158,30 @@
</executions>
</plugin>
<plugin>
+ <groupId>com.dbdeploy</groupId>
+ <artifactId>maven-dbdeploy-plugin</artifactId>
+ <version>3.0M3</version>
+ <dependencies>
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>9.1-901-1.jdbc4</version>
+ </dependency>
+ </dependencies>
+ <configuration>
+ <scriptdirectory>src/main/sql/dbdelta</scriptdirectory>
+ <driver>org.postgresql.Driver</driver>
+ <url>jdbc:postgresql://localhost/esper-test</url>
+ <userid>esper</userid>
+ <password>esper</password>
+ <dbms>pgsql</dbms>
+ <delimiter>;</delimiter>
+ <delimiterType>row</delimiterType>
+ <outputfile>dbdeploy-outputfile</outputfile>
+ <undoOutputfile>dbdeploy-undoOutputfile</undoOutputfile>
+ </configuration>
+ </plugin>
+ <plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<version>1.1.1</version>