javamsalruntime
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>javamsalruntime</artifactId> <version>0.17.4</version> </dependency>
<!--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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.azure</groupId> <artifactId>javamsalruntime</artifactId> <version>0.17.4</version> <packaging>jar</packaging> <name>javamsalruntime</name> <description> The Java/MSALRuntime interop layer facilitates communication between MSAL Java and the MSALRuntime API, allowing developers to easily access WAM from a Java program </description> <url>https://github.com/AzureAD/microsoft-authentication-library-for-cpp</url> <scm> <url>https://github.com/AzureAD/microsoft-authentication-library-for-cpp</url> </scm> <developers> <developer> <id>ms</id> <name>Microsoft Corporation</name> </developer> </developers> <licenses> <license> <name>MIT License</name> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <interopVersion>0.0.1</interopVersion> </properties> <repositories> <!--Use internal repository for internal builds --> <repository> <id>central</id> <url>https://identitydivision.pkgs.visualstudio.com/Engineering/_packaging/Engineering_PublicPackages/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> <repository> <id>Engineering_PublicPackages</id> <url>https://identitydivision.pkgs.visualstudio.com/Engineering/_packaging/Engineering_PublicPackages/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>central</id> <url>https://identitydivision.pkgs.visualstudio.com/Engineering/_packaging/Engineering_PublicPackages/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> <pluginRepository> <id>Engineering_PublicPackages</id> <url>https://identitydivision.pkgs.visualstudio.com/Engineering/_packaging/Engineering_PublicPackages/maven/v1</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> <distributionManagement> <repository> <id>Engineering_PublicPackages</id> <url>https://identitydivision.pkgs.visualstudio.com/Engineering/_packaging/Engineering_PublicPackages/maven/v1</url> </repository> </distributionManagement> <build> <resources> <resource> <directory>external-dlls</directory> <targetPath>external-dlls</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.projectlombok</groupId> <artifactId>lombok-maven-plugin</artifactId> <version>1.18.2.0</version> <executions> <execution> <goals> <goal>delombok</goal> </goals> </execution> </executions> <configuration> <sourceDirectory>src/main/java</sourceDirectory> <outputDirectory>${project.build.directory}/delombok</outputDirectory> <addOutputDirectory>false</addOutputDirectory> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.10</version> <configuration> <argLine>-noverify</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.0</version> <configuration> <sourcepath>${project.build.directory}/delombok</sourcepath> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna-platform</artifactId> <version>5.12.1</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.36</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.3.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>msal4j</artifactId> <version>1.17.1</version> <scope>test</scope> </dependency> <dependency> <groupId>com.microsoft.azure</groupId> <artifactId>msal4j-brokers</artifactId> <version>1.0.0</version> <scope>test</scope> </dependency> </dependencies> </project>