Mercurial > hg > monetdb-java
view pom.xml @ 78:80de05f07508 v2.24
Update version.
author | Sjoerd Mullender <sjoerd@acm.org> |
---|---|
date | Thu, 15 Dec 2016 15:44:16 +0100 (2016-12-15) |
parents | a5a898f6886c |
children | a6a2f4ee2d42 890dce2d5305 |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>monetdb</groupId> <artifactId>monetdb-jdbc</artifactId> <version>2.24</version> <name>${project.groupId}:${project.artifactId}</name> <description>MonetDB JDBC driver</description> <url>https://www.monetdb.org</url> <licenses> <license> <name>Mozilla Public License, Version 2.0</name> <url>https://www.mozilla.org/MPL/2.0/</url> </license> </licenses> <developers> <developer> <name>Sjoerd Mullender</name> <email>sjoerd@monetdb.org</email> <organization>MonetDB</organization> <organizationUrl>https://www.monetdb.org</organizationUrl> </developer> <developer> <name>Dimitar Nedev</name> <email>dimitar.nedev@monetdbsolutions.com</email> <organization>MonetDB Solutions</organization> <organizationUrl>https://www.monetdbsolutions.com</organizationUrl> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <scm> <connection>scm:hg:https://dev.monetdb.org/hg/MonetDB/</connection> <developerConnection>scm:hg:ssh://hg@dev.monetdb.org/MonetDB/</developerConnection> <url>https://dev.monetdb.org/hg/MonetDB/</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <jdbc.sources>nl/cwi/monetdb/jdbc/**/*.java</jdbc.sources> <mcl.sources>nl/cwi/monetdb/mcl/**/*.java</mcl.sources> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.2</version> <configuration> <includes> <include>${jdbc.sources}</include> <include>${mcl.sources}</include> </includes> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <includes> <include>${jdbc.sources}</include> <include>${mcl.sources}</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <sourceFileIncludes> <include>${jdbc.sources}</include> <include>${mcl.sources}</include> </sourceFileIncludes> <additionalparam>-Xdoclint:none</additionalparam> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.3</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>