Skip to content

Commit

Permalink
Enabling javadoc production for template. (#4963)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchdenny authored Aug 15, 2019
1 parent f173ae0 commit 1ac4b2b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
10 changes: 5 additions & 5 deletions pom.client.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. -->
<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">
<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>
<groupId>com.azure</groupId>
<artifactId>azure-client-sdk-parent</artifactId>
Expand Down Expand Up @@ -342,7 +342,6 @@
</footer>
<linksource>false</linksource>
<excludePackageNames>
com.microsoft.azure.template:
*.impl*:
*.implementation*:
com.azure.tools.checkstyle*
Expand Down Expand Up @@ -731,12 +730,13 @@
<module>./eng/jacoco-test-coverage</module>
</modules>
</profile>

<profile>
<id>template-module</id>
<activation>
<property>
<name>include-template</name>
<name>env.ENABLETEMPLATEDOCS</name>
<value>true</value>
</property>
</activation>
<modules>
Expand Down
18 changes: 12 additions & 6 deletions sdk/template/azure-sdk-template/pom.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
<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">
<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>com.azure</groupId>
<artifactId>azure-client-sdk-parent</artifactId>
<version>1.1.0</version>
<version>1.3.0</version>
<relativePath>../../../pom.client.xml</relativePath>
</parent>

<artifactId>azure-sdk-template</artifactId>
<version>1.0.2-SNAPSHOT</version>
<packaging>jar</packaging>
<version>1.0.2</version>

<name>Microsoft Azure SDK for Template</name>
<description>This package contains Microsoft Azure SDK for Template.</description>
Expand All @@ -23,9 +22,16 @@
</site>
</distributionManagement>

<scm><url>https://github.com/Azure/azure-sdk-for-java</url></scm>
<scm>
<url>https://github.com/Azure/azure-sdk-for-java</url>
</scm>

<dependencies>
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-core</artifactId>
<version>1.0.0-preview.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down

0 comments on commit 1ac4b2b

Please sign in to comment.