|
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 | <groupId>com.microsoft.azure</groupId> |
7 | 7 | <artifactId>msal4j-brokers</artifactId> |
8 | | - <version>0.0.1</version> |
| 8 | + <version>1.0.0</version> |
9 | 9 | <packaging>jar</packaging> |
10 | 10 | <name>msal4j-brokers</name> |
11 | 11 | <description> |
12 | | - Microsoft Authentication Library for Java - Brokers helps you integrate with the broker |
13 | | - on windows machine to secure Access tokens and refresh tokens. |
| 12 | + Microsoft Authentication Library for Java - Brokers is a companion package for MSAL Java that allows easy integration with authentication brokers |
14 | 13 | </description> |
15 | 14 | <url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url> |
16 | 15 | <licenses> |
|
22 | 21 | <scm> |
23 | 22 | <url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url> |
24 | 23 | </scm> |
| 24 | + <developers> |
| 25 | + <developer> |
| 26 | + <id>ms</id> |
| 27 | + <name>Microsoft Corporation</name> |
| 28 | + </developer> |
| 29 | + </developers> |
25 | 30 | <properties> |
26 | 31 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
27 | 32 | </properties> |
28 | 33 | <dependencies> |
29 | | - <!-- https://mvnrepository.com/artifact/com.microsoft.azure/msal4j --> |
30 | 34 | <dependency> |
31 | 35 | <groupId>com.microsoft.azure</groupId> |
32 | 36 | <artifactId>msal4j</artifactId> |
33 | | - <version>1.13.2</version> |
| 37 | + <version>1.14.0</version> |
| 38 | + </dependency> |
| 39 | + <dependency> |
| 40 | + <groupId>com.microsoft.azure</groupId> |
| 41 | + <artifactId>javamsalruntime</artifactId> |
| 42 | + <version>0.13.10</version> |
34 | 43 | </dependency> |
35 | 44 | <dependency> |
36 | 45 | <groupId>org.projectlombok</groupId> |
37 | 46 | <artifactId>lombok</artifactId> |
38 | 47 | <version>1.18.6</version> |
39 | 48 | <scope>provided</scope> |
40 | 49 | </dependency> |
| 50 | + <dependency> |
| 51 | + <groupId>org.testng</groupId> |
| 52 | + <artifactId>testng</artifactId> |
| 53 | + <version>7.1.0</version> |
| 54 | + <scope>test</scope> |
| 55 | + </dependency> |
| 56 | + <dependency> |
| 57 | + <groupId>org.slf4j</groupId> |
| 58 | + <artifactId>slf4j-api</artifactId> |
| 59 | + <version>1.7.36</version> |
| 60 | + </dependency> |
| 61 | + <dependency> |
| 62 | + <groupId>ch.qos.logback</groupId> |
| 63 | + <artifactId>logback-classic</artifactId> |
| 64 | + <version>1.2.3</version> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + <dependency> |
| 68 | + <groupId>commons-io</groupId> |
| 69 | + <artifactId>commons-io</artifactId> |
| 70 | + <version>2.11.0</version> |
| 71 | + <scope>test</scope> |
| 72 | + </dependency> |
| 73 | + <dependency> |
| 74 | + <groupId>org.seleniumhq.selenium</groupId> |
| 75 | + <artifactId>selenium-api</artifactId> |
| 76 | + <version>3.14.0</version> |
| 77 | + <scope>test</scope> |
| 78 | + </dependency> |
| 79 | + <dependency> |
| 80 | + <groupId>org.seleniumhq.selenium</groupId> |
| 81 | + <artifactId>selenium-chrome-driver</artifactId> |
| 82 | + <version>3.14.0</version> |
| 83 | + <scope>test</scope> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>org.seleniumhq.selenium</groupId> |
| 87 | + <artifactId>selenium-support</artifactId> |
| 88 | + <version>3.14.0</version> |
| 89 | + <scope>test</scope> |
| 90 | + </dependency> |
| 91 | + <dependency> |
| 92 | + <groupId>com.azure</groupId> |
| 93 | + <artifactId>azure-core</artifactId> |
| 94 | + <version>1.22.0</version> |
| 95 | + <scope>test</scope> |
| 96 | + </dependency> |
| 97 | + <dependency> |
| 98 | + <groupId>com.azure</groupId> |
| 99 | + <artifactId>azure-security-keyvault-secrets</artifactId> |
| 100 | + <version>4.3.5</version> |
| 101 | + <scope>test</scope> |
| 102 | + </dependency> |
41 | 103 | </dependencies> |
42 | 104 |
|
43 | 105 | <!-- force https --> |
|
60 | 122 | </pluginRepository> |
61 | 123 | </pluginRepositories> |
62 | 124 | <build> |
63 | | - <sourceDirectory>${project.build.directory}/delombok</sourceDirectory> |
64 | 125 | <plugins> |
65 | 126 | <plugin> |
66 | 127 | <groupId>org.projectlombok</groupId> |
|
0 commit comments