Skip to content

Commit

Permalink
Merge pull request Azure#769 from gcheng/multimodule
Browse files Browse the repository at this point in the history
restructure Java SDK into a multimodule maven project.
  • Loading branch information
André Rodrigues committed Dec 11, 2013
2 parents c20ba8d + 2aa1f12 commit afb2c7f
Showing 1 changed file with 83 additions and 0 deletions.
83 changes: 83 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!--
Copyright Microsoft Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>microsoft-azure-api-bom</artifactId>
<version>0.4.6</version>
<packaging>pom</packaging>

<name>Microsoft Windows Azure Client API</name>
<description>API for Microsoft Windows Azure Clients</description>
<url>https://github.com/WindowsAzure/azure-sdk-for-java</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<url>scm:git:https://github.com/WindowsAzure/azure-sdk-for-java</url>
<connection>scm:git:git://github.com/WindowsAzure/azure-sdk-for-java.git</connection>
</scm>

<properties>
<projectVersion>0.4.6</projectVersion>
</properties>

<developers>
<developer>
<id>microsoft</id>
<name>Microsoft</name>
</developer>
</developers>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>compute</artifactId>
<version>${projectVersion}</version>
</dependency>
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>media</artifactId>
<version>${projectVersion}</version>
</dependency>
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>runtime</artifactId>
<version>${projectVersion}</version>
</dependency>
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>serviceBus</artifactId>
<version>${projectVersion}</version>
</dependency>
<dependency>
<groupId>com.microsoft.windowsazure</groupId>
<artifactId>storage</artifactId>
<version>${projectVersion}</version>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>microsoft-azure-api-parent</module>
</modules>
</project>

0 comments on commit afb2c7f

Please sign in to comment.