mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
6f6f3337c7
* 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.
42 lines
1.3 KiB
XML
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>
|