Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 4 | |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 5 | <groupId>com.supwisdom.tutorial</groupId> |
| 6 | <artifactId>jdbc-tutorial</artifactId> |
| 7 | <version>1.0-SNAPSHOT</version> |
| 8 | <packaging>jar</packaging> |
Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 9 | |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 10 | <name>jdbc-tutorial</name> |
| 11 | <url>http://maven.apache.org</url> |
Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 12 | |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 13 | <properties> |
| 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | <downloadJavadocs>true</downloadJavadocs> |
| 16 | <downloadSources>true</downloadSources> |
| 17 | </properties> |
Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 18 | |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 19 | <distributionManagement> |
| 20 | <repository> |
| 21 | <id>ekingstar-releases</id> |
| 22 | <name>internal release</name> |
| 23 | <url>http://app.supwisdom.com:81/artifactory/libs-release-local</url> |
| 24 | </repository> |
| 25 | <snapshotRepository> |
| 26 | <id>ekingstar-snapshots</id> |
| 27 | <name>internal Snapshots</name> |
| 28 | <url>http://app.supwisdom.com:81/artifactory/libs-snapshot-local</url> |
| 29 | </snapshotRepository> |
| 30 | <downloadUrl>http://app.supwisdom.com:81/artifactory</downloadUrl> |
| 31 | </distributionManagement> |
Daniel Qian | 1e50379 | 2014-05-22 10:14:00 +0800 | [diff] [blame] | 32 | |
Daniel Qian | c06b902 | 2014-05-24 07:22:03 +0800 | [diff] [blame^] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>junit</groupId> |
| 36 | <artifactId>junit</artifactId> |
| 37 | <version>3.8.1</version> |
| 38 | <scope>test</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>com.h2database</groupId> |
| 42 | <artifactId>h2</artifactId> |
| 43 | <version>1.4.178</version> |
| 44 | </dependency> |
| 45 | </dependencies> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | <plugin> |
| 50 | <groupId>org.codehaus.mojo</groupId> |
| 51 | <artifactId>exec-maven-plugin</artifactId> |
| 52 | <version>1.3</version> |
| 53 | <configuration> |
| 54 | <includeProjectDependencies>true</includeProjectDependencies> |
| 55 | <mainClass>org.h2.tools.Server</mainClass> |
| 56 | <commandlineArgs>-baseDir ${basedir}</commandlineArgs> |
| 57 | </configuration> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
Daniel Qian | 5e0910d | 2014-05-22 09:44:31 +0800 | [diff] [blame] | 61 | </project> |