Skip to content

Commit

Permalink
Merge pull request #159 from openworm/development
Browse files Browse the repository at this point in the history
Release 0.4.2
  • Loading branch information
tarelli authored Jan 16, 2019
2 parents 7b67a14 + 6acd0da commit f30863e
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 26 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
language: java
install:
- export main_repo_branch=$TRAVIS_BRANCH
- if [[ ${main_repo_branch} != "master" && ${main_repo_branch} != "development" ]]; then main_repo_branch=development ; fi
- git clone https://github.com/openworm/org.geppetto.model.git -b $main_repo_branch
- git clone https://github.com/openworm/org.geppetto.model.git
- cd org.geppetto.model
- if [[ `git branch -a | egrep "remotes/origin/${TRAVIS_BRANCH}"` ]]; then git checkout $TRAVIS_BRANCH ; else echo "Branch $TRAVIS_BRANCH does not exist for the model bundle, checking out development ..." && git checkout development; fi
- git status
- git branch
- mvn install
- cd ..
env:
Expand Down
26 changes: 10 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<groupId>org.geppetto</groupId>
<artifactId>core</artifactId>
<name>Geppetto Core Bundle</name>
<version>0.4.1</version>
<version>0.4.2</version>
<packaging>bundle</packaging>
<properties>
<github.global.server>github</github.global.server>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.version>3.1.3.RELEASE</spring.version>
<spring.version>4.3.9.RELEASE</spring.version>
</properties>
<dependencies>
<!-- compile and runtime dependencies -->
Expand All @@ -19,9 +19,9 @@
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
<version>1.1.1</version>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
Expand Down Expand Up @@ -86,17 +86,17 @@
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.core</artifactId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.beans</artifactId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.context</artifactId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
Expand All @@ -105,16 +105,10 @@
<version>2.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>org.springframework.spring-library</artifactId>
<type>libd</type>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>com.springsource.org.junit</artifactId>
<version>4.5.0</version>
<version>4.7.0</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -279,7 +273,7 @@
{maven-resources},META-INF/spring=src/main/java/META-INF/spring,src/main/resources/Geppetto.properties,src/main/resources/GeppettoCommonLibrary.xmi
</Include-Resource>
<Import-Package>
org.springframework.context,org.aopalliance.aop,org.springframework.aop,,org.springframework.aop.scope,org.springframework.aop.framework,*
org.springframework.context,org.aopalliance.aop,org.springframework.aop,org.springframework.aop.scope,org.springframework.aop.framework,org.springframework.core,*
</Import-Package>
</instructions>
<DynamicImport-Package>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/META-INF/spring/app-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
http://www.springframework.org/schema/context/spring-context.xsd">

<!-- <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>-->
<!-- Instructs Spring to scan for internal service components to instantiate and configure -->
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/META-INF/spring/module-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
http://www.springframework.org/schema/context/spring-context.xsd">

<!-- <bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>-->
<!-- Instructs Spring to scan for internal service components to instantiate and configure -->
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/META-INF/spring/osgi-config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
xmlns:osgi="http://www.springframework.org/schema/osgi"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/osgi
http://www.springframework.org/schema/osgi/spring-osgi-1.2.xsd
http://www.springframework.org/schema/osgi/spring-osgi.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.1.xsd">
http://www.springframework.org/schema/aop/spring-aop.xsd">

<osgi:service id="ColladaModelExporter" ref="colladaModelInterpreterService"
interface="org.geppetto.core.model.IModelInterpreter">
Expand Down

0 comments on commit f30863e

Please sign in to comment.