File: pom-template

package info (click to toggle)
gs-collections 5.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,116 kB
  • ctags: 31,924
  • sloc: java: 220,019; xml: 5,157; makefile: 14
file content (53 lines) | stat: -rw-r--r-- 1,994 bytes parent folder | download | duplicates (5)
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
<?xml version="1.0" encoding="UTF-8"?>
<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>
    <groupId>${ivy.pom.groupId}</groupId>
    <artifactId>${ivy.pom.artifactId}</artifactId>
    <packaging>${ivy.pom.packaging}</packaging>
    <version>${ivy.pom.version}</version>
    <name>${ivy.pom.name}</name>

    <description>GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map
        implementations with a rich API and set of utility classes that work with any JDK compatible Collections,
        Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.
    </description>

    <url>https://github.com/goldmansachs/gs-collections</url>

    <inceptionYear>2004</inceptionYear>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>https://github.com/goldmansachs/gs-collections</url>
        <connection>scm:git:https://github.com/goldmansachs/gs-collections.git</connection>
        <developerConnection>scm:git:https://github.com/goldmansachs/gs-collections.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <name>Craig P. Motlin</name>
            <email>craig.motlin@gs.com</email>
        </developer>

        <developer>
            <name>Donald Raab</name>
            <email>donald.raab@gs.com</email>
        </developer>

        <developer>
            <name>Bhavana Hindupur</name>
            <email>bhavana.hindupur@gs.com</email>
        </developer>
    </developers>
</project>