Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

com.microsoft.ews-java-api:ews-java-api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

com.microsoft.ews-java-api:ews-java-api

Exchange Web Services (EWS) Java API

  • 2.0
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

Build Status ![Gitter](https://badges.gitter.im/Join Chat.svg)

EWS JAVA API

Please see the Getting Started Guide on our wiki for an introduction to this library.

Using the library

Prebuilt JARs are available in the Maven Central repository, which are easy to use with your project. Note that currently, no stable version is available yet, only snapshots in the snapshots repository.

Maven

If you want to use a snapshot build, add the Maven Central snapshots repository to your project's pom.xml. If you want to use a stable build (not available yet), you should skip this step.

<project>
  <repositories>
    <repository>
      <id>sonatype-snapshots</id>
      <name>Sonatype OSS Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
      <releases>
        <enabled>false</enabled>
      </releases>
      <snapshots>
        <enabled>true</enabled>
      </snapshots>
    </repository>
  </repositories>
</project>

And finally, add the dependency to your project's pom.xml.

<project>
  <dependencies>
    <dependency>
      <groupId>com.microsoft.ews-java-api</groupId>
      <artifactId>ews-java-api</artifactId>
      <version>2.0-SNAPSHOT</version>
    </dependency>
  </dependencies>
</project>

Gradle

If you want to use a snapshot build, add the Maven Central snapshots repository to your project's build.gradle. If you want to use a stable build (not available yet), you should skip this step.

repositories {
    maven {
        url 'https://oss.sonatype.org/content/repositories/snapshots/'
    }
}

And finally, add the dependency to your project's build.gradle.

dependencies {
    compile 'com.microsoft.ews-java-api:ews-java-api:2.0-SNAPSHOT'
}

Building from source

To build a JAR from the source yourself, please see this page.

FAQs

Package last updated on 09 Sep 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc