forked from google/guava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
61 lines (51 loc) · 1.95 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.gv2011</groupId>
<artifactId>parent-gv</artifactId>
<version>1.3</version>
</parent>
<artifactId>guava-core</artifactId>
<version>28.3.2</version>
<description>
Fork of Guava (https://github.com/google/guava).
Reduced to a selection of classes (especially immutable collections).
No dependencies, Java 9 module.
</description>
<url>https://github.com/gv2011/guava</url>
<scm>
<connection>scm:git:git@github.com:gv2011/guava.git</connection>
<developerConnection>scm:git:git@github.com:gv2011/guava.git</developerConnection>
<url>https://github.com/gv2011/guava</url>
<tag>guava-core-28.3.2</tag>
</scm>
<inceptionYear>2019</inceptionYear>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://opensource.org/licenses/Apache-2.0</url>
<comments>
This is a fork of https://github.com/google/guava.
The license applies to this Maven artifact, its modules and other content within the GIT repository
specified in the scm section of this file.
The copyright years are given by the inceptionYear tag within this file and by the history of the
former GIT repository as well as the original repository at https://github.com/google/guava.
The inceptionYear refers to the fork.
</comments>
</license>
</licenses>
<developers>
<developer>
<name>The Guava authors</name>
<url>https://github.com/google/guava</url>
</developer>
<developer>
<id>gv2011</id>
<name>Vinz</name>
<url>https://github.com/gv2011</url>
</developer>
</developers>
<properties>
<java.release>11</java.release>
</properties>
</project>