diff --git a/build.gradle b/build.gradle index f938f01b8cd..0a29a87ca1a 100644 --- a/build.gradle +++ b/build.gradle @@ -10,6 +10,8 @@ apply plugin: 'java-library' apply plugin: 'java' apply plugin: 'eclipse' +apply plugin: 'maven-publish' + // In this section you declare where to find the dependencies of your project repositories { // Use jcenter for resolving your dependencies. @@ -35,3 +37,14 @@ dependencies { compile group: 'com.sun.jersey', name: 'jersey-server', version: '1.19.4' } +publishing { + publications { + maven(MavenPublication) { + groupId 'com.microsoft.graph' + artifactId 'msgraph-sdk-java-prototype' + version '0.1-SNAPSHOT' + + from components.java + } + } +} diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index 5c3549b1abf..e28513376b3 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 3a1a6aa65a7..89a6f95240e 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Tue Sep 12 17:36:06 PDT 2017 +#Thu Dec 07 16:02:17 AEDT 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-3.5.1-bin.zip diff --git a/settings.gradle b/settings.gradle index c7699328f14..9ebbacc6d1f 100644 --- a/settings.gradle +++ b/settings.gradle @@ -15,4 +15,4 @@ include 'api' include 'services:webservice' */ -rootProject.name = 'java2' +rootProject.name = 'msgraph-sdk-java-prototype'