Skip to content

Commit 4f501a0

Browse files
committed
[maven-release-plugin] prepare release v0.1.0
1 parent b1a2f72 commit 4f501a0

1 file changed

Lines changed: 38 additions & 0 deletions

File tree

jdbc/pom.xml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>io.github.dfa1.vortex</groupId>
6+
<artifactId>vortex-java</artifactId>
7+
<version>0.1.0</version>
8+
</parent>
9+
10+
<artifactId>jdbc</artifactId>
11+
12+
<dependencies>
13+
<dependency>
14+
<groupId>io.github.dfa1.vortex</groupId>
15+
<artifactId>reader</artifactId>
16+
</dependency>
17+
<dependency>
18+
<groupId>io.github.dfa1.vortex</groupId>
19+
<artifactId>writer</artifactId>
20+
</dependency>
21+
<!-- testing -->
22+
<dependency>
23+
<groupId>org.junit.jupiter</groupId>
24+
<artifactId>junit-jupiter</artifactId>
25+
<scope>test</scope>
26+
</dependency>
27+
<dependency>
28+
<groupId>org.assertj</groupId>
29+
<artifactId>assertj-core</artifactId>
30+
<scope>test</scope>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.h2database</groupId>
34+
<artifactId>h2</artifactId>
35+
<scope>test</scope>
36+
</dependency>
37+
</dependencies>
38+
</project>

0 commit comments

Comments
 (0)