|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | | - xmlns="http://maven.apache.org/POM/4.0.0" |
4 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 3 | <modelVersion>4.0.0</modelVersion> |
6 | 4 |
|
7 | 5 | <groupId>io.github.dfa1.vortex</groupId> |
8 | 6 | <artifactId>vortex-java</artifactId> |
9 | | - <version>0.1.0-SNAPSHOT</version> |
| 7 | + <version>0.1.0</version> |
10 | 8 | <packaging>pom</packaging> |
11 | 9 |
|
12 | 10 | <name>vortex-java</name> |
|
34 | 32 | <connection>scm:git:https://github.com/dfa1/vortex-java.git</connection> |
35 | 33 | <developerConnection>scm:git:git@github.com:dfa1/vortex-java.git</developerConnection> |
36 | 34 | <url>https://github.com/dfa1/vortex-java</url> |
37 | | - <tag>HEAD</tag> |
| 35 | + <tag>v0.1.0</tag> |
38 | 36 | </scm> |
39 | 37 |
|
40 | 38 | <modules> |
41 | 39 | <module>core</module> |
42 | 40 | <module>reader</module> |
43 | 41 | <module>writer</module> |
44 | 42 | <module>csv</module> |
| 43 | + <module>jdbc</module> |
45 | 44 | <module>parquet</module> |
46 | 45 | <module>bom</module> |
47 | 46 | <module>cli</module> |
|
59 | 58 | <protobuf.version>4.35.0</protobuf.version> |
60 | 59 | <fastcsv.version>3.6.0</fastcsv.version> |
61 | 60 | <hardwood.version>1.0.0.CR1</hardwood.version> |
| 61 | + <h2.version>2.3.232</h2.version> |
62 | 62 | <!-- testing --> |
63 | 63 | <junit.version>5.11.4</junit.version> |
64 | 64 | <assertj.version>3.27.7</assertj.version> |
|
96 | 96 | <artifactId>csv</artifactId> |
97 | 97 | <version>${project.version}</version> |
98 | 98 | </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>io.github.dfa1.vortex</groupId> |
| 101 | + <artifactId>jdbc</artifactId> |
| 102 | + <version>${project.version}</version> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>com.h2database</groupId> |
| 106 | + <artifactId>h2</artifactId> |
| 107 | + <version>${h2.version}</version> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
99 | 110 | <dependency> |
100 | 111 | <groupId>io.github.dfa1.vortex</groupId> |
101 | 112 | <artifactId>parquet</artifactId> |
|
0 commit comments