Skip to content

Commit 7327d0b

Browse files
authored
Somkape/release0.4.0 (#52)
* 0.4.0-preview release
1 parent d29955e commit 7327d0b

File tree

6 files changed

+36
-32
lines changed

6 files changed

+36
-32
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The MSAL library for Java gives your app the ability to begin using the Microsof
1111

1212

1313
## Versions
14-
Current version - 0.3.0-preview
14+
Current version - 0.4.0-preview
1515

1616
You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/master/changelog.txt).
1717

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.4.0-preview
2+
=============
3+
- Bug fixes
4+
15
Version 0.3.0-preview
26
=============
37
- Added support for FOCI

pom.xml

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,32 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.microsoft.azure</groupId>
5-
<artifactId>msal4j</artifactId>
6-
<version>0.3.0-preview</version>
7-
<packaging>jar</packaging>
8-
<name>msal4j</name>
9-
<description>
10-
Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and
11-
school
12-
accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft
13-
identities
14-
</description>
15-
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
16-
<developers>
17-
<developer>
18-
<id>msopentech</id>
19-
<name>Microsoft Open Technologies, Inc.</name>
20-
</developer>
21-
</developers>
22-
<licenses>
23-
<license>
24-
<name>MIT License</name>
25-
</license>
26-
</licenses>
27-
<inceptionYear>2013</inceptionYear>
28-
<scm>
29-
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
30-
</scm>
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.microsoft.azure</groupId>
5+
<artifactId>msal4j</artifactId>
6+
<version>0.4.0-preview</version>
7+
<packaging>jar</packaging>
8+
<name>msal4j</name>
9+
<description>
10+
Microsoft Authentication Library for Java gives you the ability to obtain tokens from Azure AD v2 (work and school
11+
accounts, MSA) and Azure AD B2C, gaining access to Microsoft Cloud API and any other API secured by Microsoft
12+
identities
13+
</description>
14+
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
15+
<developers>
16+
<developer>
17+
<id>msopentech</id>
18+
<name>Microsoft Open Technologies, Inc.</name>
19+
</developer>
20+
</developers>
21+
<licenses>
22+
<license>
23+
<name>MIT License</name>
24+
</license>
25+
</licenses>
26+
<inceptionYear>2013</inceptionYear>
27+
<scm>
28+
<url>https://github.com/AzureAD/microsoft-authentication-library-for-java</url>
29+
</scm>
3130

3231
<properties>
3332
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

src/integrationtest/java/com.microsoft.aad.msal4j/AuthorizationCodeIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public void acquireTokenWithAuthorizationCode_B2C_Local(){
189189
assertAcquireTokenB2C(labResponse);
190190
}
191191

192-
// failing on azure devOps
192+
// failing on azure devOps
193193
//@Test
194194
public void acquireTokenWithAuthorizationCode_B2C_Google(){
195195
LabResponse labResponse = labUserProvider.getB2cUser(

src/integrationtest/java/com.microsoft.aad.msal4j/DeviceCodeIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ public void DeviceCodeFlowTest() throws Exception {
8585
private void runAutomatedDeviceCodeFlow(DeviceCode deviceCode, LabUser user){
8686
boolean isRunningLocally = true; /*!Strings.isNullOrEmpty(
8787
System.getenv(TestConstants.LOCAL_FLAG_ENV_VAR));*/
88+
8889
LOG.info("Device code running locally: " + isRunningLocally);
8990
try{
9091
String deviceCodeFormId;

src/samples/web-app-samples-for-msal4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<dependency>
1616
<groupId>com.microsoft.azure</groupId>
1717
<artifactId>msal4j</artifactId>
18-
<version>0.3.0-preview</version>
18+
<version>0.4.0-preview</version>
1919
</dependency>
2020
<dependency>
2121
<groupId>com.nimbusds</groupId>

0 commit comments

Comments
 (0)