-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[OTPL-6466] Using PostgreSQLContainer as a back end with same API #164
Changes from 16 commits
c456850
b8c36cd
cbf5b5b
441dee2
3daf23d
1d45966
526965a
0ce3351
1efc7c0
29341bc
f64dd3a
63c98a7
e93f1e5
39309cb
453d25b
7bc513a
9fcec2d
03e6948
fd452e4
94dc8a3
7425f84
3305374
9071ce6
ca7118e
85458c6
141495d
5350d3c
22d6803
e656f7c
c3d5d7c
ba637ba
4ba8f9e
5ebb97d
ca90295
e7deb86
4c14767
78619e2
a22cb57
e62e5e3
2f9a4b2
c2e4b1a
33cf006
6dc2182
6b204e7
17f5445
fd254ed
fd65374
56bba3e
9a07541
b1f6033
9d1c541
0d83886
d95b128
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
<parent> | ||
<groupId>com.opentable</groupId> | ||
<artifactId>otj-parent-spring</artifactId> | ||
<version>287</version> | ||
<version>308</version> | ||
</parent> | ||
|
||
<scm> | ||
|
@@ -31,7 +31,7 @@ | |
|
||
<groupId>com.opentable.components</groupId> | ||
<artifactId>otj-pg-embedded</artifactId> | ||
<version>0.13.5-SNAPSHOT</version> | ||
<version>1.01.1-SNAPSHOT</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason this isn't 1.0.0? |
||
<description>Embedded PostgreSQL driver</description> | ||
|
||
<properties> | ||
|
@@ -51,27 +51,6 @@ | |
</license> | ||
</licenses> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>exec-maven-plugin</artifactId> | ||
<version>1.3.2</version> | ||
<executions> | ||
<execution> | ||
<phase>generate-resources</phase> | ||
<goals> | ||
<goal>exec</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<executable>./repack-postgres.sh</executable> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
|
@@ -83,27 +62,6 @@ | |
<artifactId>commons-lang3</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.apache.commons</groupId> | ||
<artifactId>commons-compress</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.tukaani</groupId> | ||
<artifactId>xz</artifactId> | ||
<version>1.5</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-io</groupId> | ||
<artifactId>commons-io</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>commons-codec</groupId> | ||
<artifactId>commons-codec</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.flywaydb</groupId> | ||
<artifactId>flyway-core</artifactId> | ||
|
@@ -120,9 +78,14 @@ | |
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.github.spotbugs</groupId> | ||
<artifactId>spotbugs-annotations</artifactId> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>postgresql</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>testcontainers</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
|
@@ -157,4 +120,31 @@ | |
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>postgresql</artifactId> | ||
<version>${dep.testcontainers.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.testcontainers</groupId> | ||
<artifactId>testcontainers</artifactId> | ||
<version>${dep.testcontainers.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>junit</groupId> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dumb question, why did this need to be excluded? To make it optional which version I'm guessing? |
||
<artifactId>junit</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
</project> |
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adapt some of my wording in CHANGELOG. In particular you should note what. no longer exists