Skip to content

Commit d70255a

Browse files
committed
use latest libraries
1 parent 912d69a commit d70255a

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,11 @@ Dependencies
112112
How to run integration tests
113113
----------------------------
114114

115-
* install local PostgreSQL cluster running on 5432
116-
* allow connection with postgres/postgres or create a new user and set config values in pom.xml and application.test.properties
117-
- create schema and database privileges required for test cases
118-
* make sure you have hstore extension installed, preferably in template1
119-
* create zalando_test database on your localhost PostgreSQL cluster
120-
- possibly add hstore extension to database
121-
* run integration tests (JUnit tests with database access):
122-
mvn clean test -Pintegration-test
115+
The provided helper script will start a PostgreSQL instance with Docker on port 5432 and run integration tests:
123116

117+
./test.sh
118+
119+
You can use the provided Vagrant box to run the script in.
124120

125121
Known issues
126122
------------

pom.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>de.zalando</groupId>
66
<artifactId>zalando-sprocwrapper</artifactId>
7-
<version>1.0.6</version>
7+
<version>1.2.1</version>
88
<packaging>jar</packaging>
99
<name>Stored Procedure Wrapper</name>
1010
<description>Library to make PostgreSQL stored procedures available through simple Java "*SProcService" interfaces including automatic object serialization and deserialization (using typemapper and convention-over-configuration). Supports sharding, advisory locking, statement timeouts and PostgreSQL types such as enums and hstore.</description>
@@ -50,7 +50,7 @@
5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
5151
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5252
<spring.version>3.2.3.RELEASE</spring.version>
53-
<postgresql.version>9.2-1003-jdbc4</postgresql.version>
53+
<postgresql.version>9.3-1102-jdbc41</postgresql.version>
5454

5555
</properties>
5656

@@ -59,7 +59,7 @@
5959
<plugin>
6060
<groupId>org.apache.maven.plugins</groupId>
6161
<artifactId>maven-compiler-plugin</artifactId>
62-
<version>2.3.2</version>
62+
<version>3.1</version>
6363
<configuration>
6464
<source>1.7</source>
6565
<target>1.7</target>
@@ -68,12 +68,12 @@
6868
<plugin>
6969
<groupId>org.apache.maven.plugins</groupId>
7070
<artifactId>maven-resources-plugin</artifactId>
71-
<version>2.4.3</version>
71+
<version>2.6</version>
7272
</plugin>
7373
<plugin>
7474
<groupId>org.apache.maven.plugins</groupId>
7575
<artifactId>maven-source-plugin</artifactId>
76-
<version>2.4</version>
76+
<version>2.3</version>
7777
<executions>
7878
<execution>
7979
<id>attach-sources</id>
@@ -182,7 +182,7 @@
182182
<dependency>
183183
<groupId>joda-time</groupId>
184184
<artifactId>joda-time</artifactId>
185-
<version>2.0</version>
185+
<version>2.6</version>
186186
</dependency>
187187
</dependencies>
188188
<profiles>

0 commit comments

Comments
 (0)