forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.travis, build: Build step to push .aar to Maven Central
- Loading branch information
Showing
6 changed files
with
216 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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>[email protected]</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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 | ||
http://maven.apache.org/xsd/settings-1.0.0.xsd"> | ||
<servers> | ||
<server> | ||
<id>ossrh</id> | ||
<username>${env.ANDROID_SONATYPE_USERNAME}</username> | ||
<password>${env.ANDROID_SONATYPE_PASSWORD}</password> | ||
</server> | ||
</servers> | ||
<profiles> | ||
<profile> | ||
<id>ossrh</id> | ||
<activation> | ||
<activeByDefault>true</activeByDefault> | ||
</activation> | ||
<properties> | ||
<gpg.executable>gpg</gpg.executable> | ||
<gpg.passphrase></gpg.passphrase> | ||
</properties> | ||
</profile> | ||
</profiles> | ||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters