github.com/yihuang/erigon@v1.9.7/build/mvn.pom (about)

     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
     4                        http://maven.apache.org/xsd/maven-4.0.0.xsd">
     5    <modelVersion>4.0.0</modelVersion>
     6  
     7    <groupId>org.ethereum</groupId>
     8    <artifactId>geth</artifactId>
     9    <version>{{.Version}}</version>
    10    <packaging>aar</packaging>
    11  
    12    <name>Android Ethereum Client</name>
    13    <description>Android port of the go-ethereum libraries and node</description>
    14    <url>https://github.com/ethereum/go-ethereum</url>
    15    <inceptionYear>2015</inceptionYear>
    16  
    17    <licenses>
    18      <license>
    19        <name>GNU Lesser General Public License, Version 3.0</name>
    20        <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url>
    21        <distribution>repo</distribution>
    22      </license>
    23    </licenses>
    24  
    25    <organization>
    26      <name>Ethereum</name>
    27      <url>https://ethereum.org</url>
    28    </organization>
    29  
    30    <developers>
    31      <developer>
    32        <id>karalabe</id>
    33        <name>Péter Szilágyi</name>
    34        <email>peterke@gmail.com</email>
    35        <url>https://github.com/karalabe</url>
    36        <properties>
    37          <picUrl>https://www.gravatar.com/avatar/2ecbf0f5b4b79eebf8c193e5d324357f?s=256</picUrl>
    38        </properties>
    39      </developer>
    40    </developers>
    41  
    42    <contributors>{{range .Contributors}}
    43      <contributor>
    44        <name>{{.Name}}</name>
    45        <email>{{.Email}}</email>
    46      </contributor>{{end}}
    47    </contributors>
    48  
    49    <issueManagement>
    50      <system>GitHub Issues</system>
    51      <url>https://github.com/ethereum/go-ethereum/issues/</url>
    52    </issueManagement>
    53  
    54    <scm>
    55      <url>https://github.com/ethereum/go-ethereum</url>
    56    </scm>
    57  </project>