1- <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/maven-v4_0_0.xsd" >
3- <modelVersion >4.0.0</modelVersion >
4- <groupId >io.cryptolens</groupId >
5- <artifactId >cryptolens</artifactId >
6- <packaging >jar</packaging >
7- <version >1.11-STABLE</version >
8- <name >cryptolens</name >
9- <description >A client api to access Cryptolens Licensing API.</description >
10- <url >https://github.com/cryptolens/cryptolens-java</url >
11- <properties >
12- <maven .compiler.source>1.8</maven .compiler.source>
13- <maven .compiler.target>1.8</maven .compiler.target>
14- </properties >
15- <dependencies >
16- <dependency >
17- <groupId >com.google.code.gson</groupId >
18- <artifactId >gson</artifactId >
19- <version >2.9.1</version >
20- </dependency >
21- <dependency >
22- <groupId >junit</groupId >
23- <artifactId >junit</artifactId >
24- <version >4.13.1</version >
25- <scope >test</scope >
26- </dependency >
27- <dependency >
28- <groupId >com.github.oshi</groupId >
29- <artifactId >oshi-core</artifactId >
30- <version >5.3.1</version >
31- </dependency >
32- </dependencies >
33- </project >
1+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <groupId >io.cryptolens</groupId >
7+ <artifactId >cryptolens</artifactId >
8+ <packaging >jar</packaging >
9+
10+ <version >1.12.0</version >
11+
12+ <name >cryptolens</name >
13+ <description >A client API to access Cryptolens Licensing API.</description >
14+ <url >https://github.com/cryptolens/cryptolens-java</url >
15+
16+ <properties >
17+ <maven .compiler.source>1.8</maven .compiler.source>
18+ <maven .compiler.target>1.8</maven .compiler.target>
19+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20+ </properties >
21+
22+ <dependencies >
23+ <!-- Gson is required at runtime; thin jar (no shading) but pulled transitively -->
24+ <dependency >
25+ <groupId >com.google.code.gson</groupId >
26+ <artifactId >gson</artifactId >
27+ <version >2.9.1</version >
28+ </dependency >
29+
30+ <!-- Optional: only used if present for machine-code helpers -->
31+ <dependency >
32+ <groupId >com.github.oshi</groupId >
33+ <artifactId >oshi-core</artifactId >
34+ <version >5.3.1</version >
35+ <optional >true</optional >
36+ </dependency >
37+
38+ <!-- Tests -->
39+ <dependency >
40+ <groupId >junit</groupId >
41+ <artifactId >junit</artifactId >
42+ <version >4.13.1</version >
43+ <scope >test</scope >
44+ </dependency >
45+ </dependencies >
46+ </project >
0 commit comments