mirror of
https://github.com/status-im/status-go.git
synced 2025-02-04 10:56:00 +00:00
ebd77aabe2
* static: updates Whisper test (to work with Geth 1.6.1) * jail: VM persistence implemented * jail: sendMessage/showSuggestions minor fixes (to be squashed) * node: CHT and boot nodes auto-load implemented * Replaced CHT data file from farazdagi's to tiabc's * Rewrote config_test.go using testify having reduced it twice in size * Increased SyncTime and panic timeout in tests * Fixed test - remove go default test to testify/suite (#207) * Add flag setup for RPCEnabled and add comment (#225) * jail: register method handlers before running initial js in jail (#226) * Console Jail Mod #179 (#228) * Added ./statusd-data into .gitignore * Increased log level for the test node from INFO to ERROR * Add call to loop.Run to evaluate all setTimeout/setIntervals methods. (#208) * Rebase onto geth1.6.7 (#232) * Got back sync duration from 60s to 30s, updated bindata.go
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
<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>{{.Version}}</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>
|