1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <modelVersion >4.0.0</modelVersion >
6+
7+ <groupId >org.casbin</groupId >
8+ <artifactId >casvisor-java-sdk</artifactId >
9+ <version >1.0</version >
10+
11+ <name >Casvisor Java SDK</name >
12+ <description >Java client SDK for Casvisor.</description >
13+ <url >https://github.com/casvisor/casvisor-java-sdk</url >
14+ <licenses >
15+ <license >
16+ <name >The Apache Software License, Version 2.0</name >
17+ <url >https://www.apache.org/licenses/LICENSE-2.0.txt</url >
18+ <distribution >repo</distribution >
19+ </license >
20+ </licenses >
21+ <developers >
22+ <developer >
23+ <name >Yang Luo</name >
24+ <email >hsluoyz@qq.com</email >
25+ <url >https://github.com/hsluoyz</url >
26+ </developer >
27+ </developers >
28+ <scm >
29+ <connection >scm:git:https://github.com/casvisor/casvisor-java-sdk.git</connection >
30+ <developerConnection >scm:git:https://github.com/casvisor/casvisor-java-sdk.git</developerConnection >
31+ <url >https://github.com/casvisor/casvisor-java-sdk</url >
32+ </scm >
33+
34+ <distributionManagement >
35+ <snapshotRepository >
36+ <id >ossrh</id >
37+ <url >https://central.sonatype.com</url >
38+ </snapshotRepository >
39+ </distributionManagement >
40+
41+ <build >
42+ <plugins >
43+ <plugin >
44+ <!-- Automatically close and deploy from OSSRH -->
45+ <groupId >org.sonatype.central</groupId >
46+ <artifactId >central-publishing-maven-plugin</artifactId >
47+ <version >0.5.0</version >
48+ <extensions >true</extensions >
49+ <configuration >
50+ <publishingServerId >ossrh</publishingServerId >
51+ <tokenAuth >true</tokenAuth >
52+ <!-- Release versions will be synced to Maven Central automatically. -->
53+ <autoPublish >true</autoPublish >
54+ </configuration >
55+ </plugin >
56+ <plugin >
57+ <groupId >org.apache.maven.plugins</groupId >
58+ <artifactId >maven-source-plugin</artifactId >
59+ <executions >
60+ <execution >
61+ <id >attach-sources</id >
62+ <goals >
63+ <goal >jar-no-fork</goal >
64+ </goals >
65+ </execution >
66+ </executions >
67+ </plugin >
68+ <plugin >
69+ <groupId >org.apache.maven.plugins</groupId >
70+ <artifactId >maven-javadoc-plugin</artifactId >
71+ <version >2.10.4</version >
72+ <executions >
73+ <execution >
74+ <id >attach-javadocs</id >
75+ <goals >
76+ <goal >jar</goal >
77+ </goals >
78+ </execution >
79+ </executions >
80+ </plugin >
81+ <plugin >
82+ <groupId >org.apache.maven.plugins</groupId >
83+ <artifactId >maven-gpg-plugin</artifactId >
84+ <version >1.5</version >
85+ <executions >
86+ <execution >
87+ <id >sign-artifacts</id >
88+ <phase >verify</phase >
89+ <goals >
90+ <goal >sign</goal >
91+ </goals >
92+ </execution >
93+ </executions >
94+ <configuration >
95+ <!-- Prevent gpg from using pinentry programs -->
96+ <gpgArguments >
97+ <arg >--pinentry-mode</arg >
98+ <arg >loopback</arg >
99+ </gpgArguments >
100+ </configuration >
101+ </plugin >
102+ <plugin >
103+ <groupId >org.codehaus.mojo</groupId >
104+ <artifactId >cobertura-maven-plugin</artifactId >
105+ <version >2.7</version >
106+ <configuration >
107+ <formats >
108+ <format >html</format >
109+ <format >xml</format >
110+ </formats >
111+ <check />
112+ </configuration >
113+ </plugin >
114+ </plugins >
115+ </build >
116+
117+ <dependencies >
118+ <dependency >
119+ <groupId >commons-beanutils</groupId >
120+ <artifactId >commons-beanutils</artifactId >
121+ <version >1.9.4</version >
122+ </dependency >
123+ <dependency >
124+ <groupId >com.squareup.okhttp3</groupId >
125+ <artifactId >okhttp</artifactId >
126+ <version >4.9.3</version >
127+ </dependency >
128+ <dependency >
129+ <groupId >org.apache.oltu.oauth2</groupId >
130+ <artifactId >org.apache.oltu.oauth2.client</artifactId >
131+ <version >1.0.2</version >
132+ </dependency >
133+ <!-- https://mvnrepository.com/artifact/com.nimbusds/nimbus-jose-jwt -->
134+ <dependency >
135+ <groupId >com.nimbusds</groupId >
136+ <artifactId >nimbus-jose-jwt</artifactId >
137+ <version >9.10</version >
138+ </dependency >
139+
140+ <dependency >
141+ <groupId >com.fasterxml.jackson.core</groupId >
142+ <artifactId >jackson-core</artifactId >
143+ <version >2.13.3</version >
144+ </dependency >
145+ <dependency >
146+ <groupId >com.fasterxml.jackson.core</groupId >
147+ <artifactId >jackson-databind</artifactId >
148+ <version >2.13.3</version >
149+ </dependency >
150+ <dependency >
151+ <groupId >junit</groupId >
152+ <artifactId >junit</artifactId >
153+ <version >4.13.2</version >
154+ <scope >test</scope >
155+ </dependency >
156+ <dependency >
157+ <groupId >org.junit.jupiter</groupId >
158+ <artifactId >junit-jupiter-api</artifactId >
159+ <version >5.8.2</version >
160+ <scope >test</scope >
161+ </dependency >
162+ <dependency >
163+ <groupId >org.junit.jupiter</groupId >
164+ <artifactId >junit-jupiter-engine</artifactId >
165+ <version >5.8.2</version >
166+ <scope >test</scope >
167+ </dependency >
168+ </dependencies >
169+
170+
171+ <properties >
172+ <maven .compiler.source>8</maven .compiler.source>
173+ <maven .compiler.target>8</maven .compiler.target>
174+ </properties >
175+
176+ </project >
0 commit comments