| POM文件内容: |
<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 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>5</version>
</parent>
<groupId>com.nuodb.jdbc</groupId>
<artifactId>nuodb-jdbc</artifactId>
<version>2.0.3</version>
<packaging>jar</packaging>
<name>NuoDB JDBC Driver</name>
<description>NuoDB JDBC driver classes for use with JDK 1.6, and newer</description>
<url>http://www.nuodb.com</url>
<organization>
<name>NuoDB, Inc.</name>
<url>http://www.nuodb.com</url>
</organization>
<licenses>
<license>
<name>NuoDB Terms and Conditions</name>
<url>http://www.nuodb.com/download-nuodb/request/terms</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git@git:nuodb</url>
<connection>scm:git:git@git:nuodb</connection>
</scm>
<dependencies>
</dependencies>
<developers>
<developer>
<id>rbuck</id>
<name>Robert Buck</name>
<email>rbuck@nuodb.com</email>
</developer>
<developer>
<id>jgetto</id>
<name>Jacob Getto</name>
<email>jgetto@nuodb.com</email>
</developer>
</developers>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<keyname>485C984A</keyname>
</configuration>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|