3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
4
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
5
<modelVersion >4.0.0</modelVersion >
6
- <packaging >jar</packaging >
7
6
<groupId >com.microsoft.azure</groupId >
8
7
<artifactId >msal4j-brokers</artifactId >
9
8
<version >0.0.1</version >
9
+ <packaging >jar</packaging >
10
+ <name >msal4j-brokers</name >
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.
14
+ </description >
15
+ <url >https://github.com/AzureAD/microsoft-authentication-library-for-java</url >
16
+ <licenses >
17
+ <license >
18
+ <name >MIT License</name >
19
+ </license >
20
+ </licenses >
21
+ <inceptionYear >2022</inceptionYear >
22
+ <scm >
23
+ <url >https://github.com/AzureAD/microsoft-authentication-library-for-java</url >
24
+ </scm >
25
+ <properties >
26
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
27
+ </properties >
10
28
<dependencies >
11
- <!-- https://mvnrepository.com/artifact/com.microsoft.azure/msal4j -->
12
- <dependency >
13
- <groupId >com.microsoft.azure</groupId >
14
- <artifactId >msal4j</artifactId >
15
- <version >1.13.1</version >
16
- </dependency >
17
- <dependency >
18
- <groupId >net.java.dev.jna</groupId >
19
- <artifactId >jna-platform</artifactId >
20
- <version >5.12.1</version >
21
- </dependency >
29
+ <!-- https://mvnrepository.com/artifact/com.microsoft.azure/msal4j -->
30
+ <dependency >
31
+ <groupId >com.microsoft.azure</groupId >
32
+ <artifactId >msal4j</artifactId >
33
+ <version >1.13.2</version >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >org.projectlombok</groupId >
37
+ <artifactId >lombok</artifactId >
38
+ <version >1.18.6</version >
39
+ <scope >provided</scope >
40
+ </dependency >
22
41
</dependencies >
23
42
43
+ <!-- force https -->
44
+ <repositories >
45
+ <repository >
46
+ <id >central</id >
47
+ <url >https://repo1.maven.org/maven2</url >
48
+ <snapshots >
49
+ <enabled >false</enabled >
50
+ </snapshots >
51
+ </repository >
52
+ </repositories >
53
+ <pluginRepositories >
54
+ <pluginRepository >
55
+ <id >central</id >
56
+ <url >https://repo1.maven.org/maven2</url >
57
+ <snapshots >
58
+ <enabled >false</enabled >
59
+ </snapshots >
60
+ </pluginRepository >
61
+ </pluginRepositories >
62
+ <build >
63
+ <sourceDirectory >${project.build.directory} /delombok</sourceDirectory >
64
+ <plugins >
65
+ <plugin >
66
+ <groupId >org.projectlombok</groupId >
67
+ <artifactId >lombok-maven-plugin</artifactId >
68
+ <version >1.18.2.0</version >
69
+ <executions >
70
+ <execution >
71
+ <goals >
72
+ <goal >delombok</goal >
73
+ </goals >
74
+ </execution >
75
+ </executions >
76
+ <configuration >
77
+ <sourceDirectory >src/main/java</sourceDirectory >
78
+ <outputDirectory >${project.build.directory} /delombok</outputDirectory >
79
+ <addOutputDirectory >false</addOutputDirectory >
80
+ </configuration >
81
+ </plugin >
82
+ <plugin >
83
+ <groupId >org.apache.maven.plugins</groupId >
84
+ <artifactId >maven-surefire-plugin</artifactId >
85
+ <version >2.10</version >
86
+ <configuration >
87
+ <argLine >-noverify</argLine >
88
+ </configuration >
89
+ </plugin >
90
+ <plugin >
91
+ <groupId >org.apache.maven.plugins</groupId >
92
+ <artifactId >maven-javadoc-plugin</artifactId >
93
+ <version >3.1.0</version >
94
+ <configuration >
95
+ <sourcepath >${project.build.directory} /delombok</sourcepath >
96
+ </configuration >
97
+ <executions >
98
+ <execution >
99
+ <id >attach-javadocs</id >
100
+ <goals >
101
+ <goal >jar</goal >
102
+ </goals >
103
+ </execution >
104
+ </executions >
105
+ </plugin >
106
+ <plugin >
107
+ <groupId >org.apache.maven.plugins</groupId >
108
+ <artifactId >maven-source-plugin</artifactId >
109
+ <version >2.2.1</version >
110
+ <executions >
111
+ <execution >
112
+ <id >attach-sources</id >
113
+ <goals >
114
+ <goal >jar</goal >
115
+ </goals >
116
+ </execution >
117
+ </executions >
118
+ </plugin >
119
+ <plugin >
120
+ <groupId >org.apache.maven.plugins</groupId >
121
+ <artifactId >maven-compiler-plugin</artifactId >
122
+ <version >3.7.0</version >
123
+ <configuration >
124
+ <source >8</source >
125
+ <target >8</target >
126
+ </configuration >
127
+ </plugin >
128
+ </plugins >
129
+ </build >
130
+
24
131
</project >
0 commit comments