Skip to content

Commit

Permalink
Merge pull request #61 from VirtualFlyBrain/development
Browse files Browse the repository at this point in the history
updating to latest Development
  • Loading branch information
Robbie1977 authored Jul 9, 2019
2 parents 39c5516 + 768d06e commit 65e480f
Show file tree
Hide file tree
Showing 8 changed files with 563 additions and 63 deletions.
16 changes: 10 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,34 @@ install:
- cd org.geppetto.model
- git checkout development
- git checkout $TRAVIS_BRANCH || true
- mvn install
- mvn -Dhttps.protocols=TLSv1.2 -DskipTests --quiet install
- cd ..
- git clone https://github.com/openworm/org.geppetto.core.git
- cd org.geppetto.core
- git checkout development
- git checkout $TRAVIS_BRANCH || true
- mvn install
- mvn -Dhttps.protocols=TLSv1.2 -DskipTests --quiet install
- cd ..
- git clone https://github.com/openworm/org.geppetto.simulation.git
- cd org.geppetto.simulation
- git checkout development
- git checkout $TRAVIS_BRANCH || true
- mvn install
- mvn -Dhttps.protocols=TLSv1.2 -DskipTests --quiet install
- cd ..
- git clone https://github.com/openworm/org.geppetto.datasources.git
- cd org.geppetto.datasources
- git checkout development
- git checkout $TRAVIS_BRANCH || true
- mvn install
- mvn -Dhttps.protocols=TLSv1.2 -DskipTests --quiet install
- cd ..
- cd uk.ac.vfb.geppetto
- mvn install
- mvn -Dhttps.protocols=TLSv1.2 -DskipTests --quiet install


before_script:
- npm install travis-ci

after_success:
- node travis/trigger-build.js



Expand Down
9 changes: 7 additions & 2 deletions src/main/java/META-INF/spring/osgi-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,14 @@
<bean id="nblastQueryProcessor" scope="prototype" class="uk.ac.vfb.geppetto.NBLASTQueryProcessor">
<aop:scoped-proxy proxy-target-class="false"/>
</bean>

<osgi:service id="neo4jQueryProcessorExporter" ref="neo4jQueryProcessor"
interface="org.geppetto.core.datasources.IQueryProcessor">
</osgi:service>
<bean id="neo4jQueryProcessor" scope="prototype" class="uk.ac.vfb.geppetto.NEO4JQueryProcessor">
<aop:scoped-proxy proxy-target-class="false"/>
</bean>

<bean id="eventListenerBean" class="org.geppetto.core.services.registry.ApplicationListenerBean" />



</beans>
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public QueryResults process(ProcessQuery query, DataSource dataSource, Variable
i++;
}
System.out.println("CreateImagesForQueryResultsQueryProcessor returning " + Integer.toString(i) + " rows");
System.out.println(GeppettoSerializer.serializeToJSON(processedResults));
//System.out.println(GeppettoSerializer.serializeToJSON(processedResults));
return processedResults;
}
catch(GeppettoVisitingException e)
Expand Down
Loading

0 comments on commit 65e480f

Please sign in to comment.