diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-10-17 20:17:14 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-11-14 23:56:58 +0800 |
commit | b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9 (patch) | |
tree | 56aa781c07c9b2a8718af0c69d65b661008fbafa /build/mvn.pom | |
parent | 178da7c6a94718389e7192d87df5ee42e7223bc3 (diff) | |
download | dexon-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.tar.gz dexon-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.tar.zst dexon-b7dfd333c5ac5caf4278e2557503dc4fe4eb46c9.zip |
.travis, build: Build step to push .aar to Maven Central
Diffstat (limited to 'build/mvn.pom')
-rw-r--r-- | build/mvn.pom | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/build/mvn.pom b/build/mvn.pom new file mode 100644 index 000000000..009226876 --- /dev/null +++ b/build/mvn.pom @@ -0,0 +1,57 @@ +<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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.ethereum</groupId> + <artifactId>geth</artifactId> + <version>{{.VersionString}}</version> + <packaging>aar</packaging> + + <name>Android Ethereum Client</name> + <description>Android port of the go-ethereum libraries and node</description> + <url>https://github.com/ethereum/go-ethereum</url> + <inceptionYear>2015</inceptionYear> + + <licenses> + <license> + <name>GNU Lesser General Public License, Version 3.0</name> + <url>https://www.gnu.org/licenses/lgpl-3.0.en.html</url> + <distribution>repo</distribution> + </license> + </licenses> + + <organization> + <name>Ethereum</name> + <url>https://ethereum.org</url> + </organization> + + <developers> + <developer> + <id>karalabe</id> + <name>Péter Szilágyi</name> + <email>peterke@gmail.com</email> + <url>https://github.com/karalabe</url> + <properties> + <picUrl>https://www.gravatar.com/avatar/2ecbf0f5b4b79eebf8c193e5d324357f?s=256</picUrl> + </properties> + </developer> + </developers> + + <contributors>{{range .Contributors}} + <contributor> + <name>{{.Name}}</name> + <email>{{.Email}}</email> + </contributor>{{end}} + </contributors> + + <issueManagement> + <system>GitHub Issues</system> + <url>https://github.com/ethereum/go-ethereum/issues/</url> + </issueManagement> + + <scm> + <url>https://github.com/ethereum/go-ethereum</url> + </scm> +</project> |