root/lang/java/misc/jdbc-demo/pom.xml @ 30620

Revision 30620, 0.9 kB (checked in by rikeda, 4 years ago)

JDBCサンプルコード

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6    <modelVersion>4.0.0</modelVersion>
7    <name>jdbc-demo</name>
8    <groupId>jdbc-demo</groupId>
9    <artifactId>jdbc-demo</artifactId>
10    <packaging>jar</packaging>
11    <version>1.0-SNAPSHOT</version>
12
13    <dependencies>
14        <dependency>
15            <groupId>junit</groupId>
16            <artifactId>junit</artifactId>
17            <version>4.0</version>
18            <scope>test</scope>
19        </dependency>
20        <dependency>
21            <groupId>com.h2database</groupId>
22            <artifactId>h2</artifactId>
23            <version>1.1.107</version>
24            <scope>compile</scope>
25        </dependency>
26    </dependencies>
27
28</project>
Note: See TracBrowser for help on using the browser.