daml/bazel_tools/pom_template.xml
Nick Smith 6f6f3337c7
Fixes 895: Improve DA Bazel rules for building javadocs. (#896)
* Fixes 895: Improve DA Bazel rules for building javadocs.

Extend the da_java_library Bazel macro to also build the Javadoc for the
target. Add the Javadoc artefacts to the release procedure.
2019-05-14 09:40:30 +02:00

42 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>{groupId}</groupId>
<artifactId>{artifactId}</artifactId>
<version>{version}</version>
<packaging>jar</packaging>
<name>{artifactId}</name>
<description>TBD</description>
<url>https://github.com/digital-asset/daml</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Digital Asset SDK Feedback</name>
<email>sdk-feedback@digitalasset.com</email>
<organization>Digital Asset (Switzerland) GmbH</organization>
<organizationUrl>http://www.daml.com</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/digital-asset/daml.git</connection>
<developerConnection>scm:git:ssh://github.com:digital-asset/daml.git</developerConnection>
<url>http://github.com/digital-asset/daml/tree/master</url>
</scm>
<dependencies>
{generated_bzl_deps}
</dependencies>
</project>