Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
gh-25 - Updated gaffer to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
p013570 committed Nov 30, 2016
1 parent bf135c5 commit fac8dae
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ cache:
- $HOME/.m2
jdk:
- oraclejdk8
install: travis_wait git clone https://github.com/gchq/Gaffer.git gafferTmp && cd gafferTmp && git checkout gaffer2-0.4.6 && mvn -q clean install -Pquick && cd ../ && rm -rf gafferTmp
install: travis_wait git clone https://github.com/gchq/Gaffer.git gafferTmp && cd gafferTmp && git checkout gaffer2-0.4.7 && mvn -q clean install -Pquick && cd ../ && rm -rf gafferTmp
script: mvn install -PreducedMemory -Dfindbugs.skip=true && mvn findbugs:findbugs && mvn javadoc:javadoc
2 changes: 1 addition & 1 deletion NOTICES
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gaffer tools is built using maven. This process will automatically pull in depen
projects below.


Gaffer (gaffer:gaffer2:0.4.6):
Gaffer (gaffer:gaffer2:0.4.7):

- Apache License, Version 2.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ In order to use these tools you will first need to have the relevant version of
```bash
git clone https://github.com/gchq/Gaffer.git
cd Gaffer
git checkout gaffer2-0.4.6
git checkout gaffer2-0.4.7
mvn clean install -Pquick
```
5 changes: 3 additions & 2 deletions graffer-ql/pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?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/xsd/maven-4.0.0.xsd">
<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">

<parent>
<groupId>gaffer</groupId>
Expand Down Expand Up @@ -28,7 +29,7 @@
</dependency>
<dependency>
<groupId>gaffer</groupId>
<artifactId>example</artifactId>
<artifactId>example-graph</artifactId>
<version>${gaffer.version}</version>
</dependency>
</dependencies>
Expand Down
8 changes: 2 additions & 6 deletions mini-accumulo-cluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
~ limitations under the License.
-->

<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">
<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>
<parent>
<groupId>gaffer</groupId>
Expand All @@ -36,11 +37,6 @@
<artifactId>accumulo-store</artifactId>
<version>${gaffer.version}</version>
</dependency>
<dependency>
<groupId>gaffer</groupId>
<artifactId>example</artifactId>
<version>${gaffer.version}</version>
</dependency>
<dependency>
<groupId>org.apache.accumulo</groupId>
<artifactId>accumulo-minicluster</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>gaffer</groupId>
<artifactId>gaffer2</artifactId>
<version>0.4.6</version>
<version>0.4.7</version>
</parent>

<artifactId>gaffer-tools</artifactId>
Expand All @@ -35,7 +35,7 @@
</modules>

<properties>
<gaffer.version>0.4.6</gaffer.version>
<gaffer.version>0.4.7</gaffer.version>
<scm.url>
https://github.com/gchq/gaffer-tools
</scm.url>
Expand Down
2 changes: 1 addition & 1 deletion python-shell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ This creates a distributable Python wheel which can installed locally to provide
The wheel file is install using pip:

```bash
pip3 install gaffer_shell-0.4.6-py2.py3-none-any.whl
pip3 install gaffer_shell-0.4.7-py2.py3-none-any.whl
```

After installation the shell can be imported into an application as below:
Expand Down
2 changes: 1 addition & 1 deletion python-shell/src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from gafferpy import gaffer_connector
from gafferpy import gaffer_connector_pki

__version__ = "0.4.6"
__version__ = "0.4.7"

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
Expand Down
2 changes: 1 addition & 1 deletion python-shell/src/gafferpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from . import gaffer_connector
from . import gaffer_connector_pki

__version__ = "0.4.6"
__version__ = "0.4.7"

__title__ = "gafferpy"
__description__ = "Gaffer Python Shell"
Expand Down
2 changes: 1 addition & 1 deletion road-traffic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ To run the demo you will first need to build the corresponding version of Gaffer
```bash
git clone https://github.com/gchq/Gaffer.git
cd Gaffer
git checkout gaffer2-0.4.6
git checkout gaffer2-0.4.7
mvn clean install -Pquick
```

Expand Down

0 comments on commit fac8dae

Please sign in to comment.