Skip to content

Commit

Permalink
Rename to org.geppetto
Browse files Browse the repository at this point in the history
  • Loading branch information
tarelli committed Apr 27, 2013
1 parent 51ecb99 commit d019d55
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .project
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<projectDescription> <projectDescription>
<name>org.openworm.simulationengine</name> <name>org.geppetto</name>
<comment></comment> <comment></comment>
<projects> <projects>
</projects> </projects>
Expand Down
6 changes: 3 additions & 3 deletions META-INF/MANIFEST.MF
@@ -1,8 +1,8 @@
Manifest-Version: 1.0 Manifest-Version: 1.0
Bundle-ManifestVersion: 2 Bundle-ManifestVersion: 2
Bundle-Name: Org.openworm.simulationengine Bundle-Name: org.geppetto
Bundle-SymbolicName: org.openworm.simulationengine Bundle-SymbolicName: org.geppetto
Bundle-Version: 1.0.0.qualifier Bundle-Version: 1.0.0.qualifier
Application-Version: 1.0.0 Application-Version: 1.0.0
Application-SymbolicName: org.openworm.simulationengine Application-SymbolicName: org.geppetto
Application-Name: OpenWorm Simulation Engine Application-Name: OpenWorm Simulation Engine
12 changes: 6 additions & 6 deletions owse.plan
Expand Up @@ -6,11 +6,11 @@
http://www.springsource.org/schema/dm-server/plan http://www.springsource.org/schema/dm-server/plan
http://www.springsource.org/schema/dm-server/plan/springsource-dm-server-plan.xsd"> http://www.springsource.org/schema/dm-server/plan/springsource-dm-server-plan.xsd">


<artifact type="bundle" name="org.openworm.simulationengine.core" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.core" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.model.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.model.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.solver.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.solver.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.simulator.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.simulator.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.simulation" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.simulation" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.frontend" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.frontend" version="1.0.0"/>


</plan> </plan>
18 changes: 9 additions & 9 deletions owsefull.plan
Expand Up @@ -6,14 +6,14 @@
http://www.springsource.org/schema/dm-server/plan http://www.springsource.org/schema/dm-server/plan
http://www.springsource.org/schema/dm-server/plan/springsource-dm-server-plan.xsd"> http://www.springsource.org/schema/dm-server/plan/springsource-dm-server-plan.xsd">


<artifact type="bundle" name="org.openworm.simulationengine.core" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.core" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.samplesolver" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.samplesolver" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.samplesimulator" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.samplesimulator" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.samplesimulation" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.samplesimulation" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.model.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.model.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.solver.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.solver.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.simulator.sph" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.simulator.sph" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.simulation" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.simulation" version="1.0.0"/>
<artifact type="bundle" name="org.openworm.simulationengine.frontend" version="1.0.0"/> <artifact type="bundle" name="org.geppetto.frontend" version="1.0.0"/>


</plan> </plan>
20 changes: 10 additions & 10 deletions pom.xml
@@ -1,17 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.openworm.simulationengine</groupId> <groupId>org.geppetto</groupId>
<artifactId>org.openworm.simulationengine</artifactId> <artifactId>org.geppetto</artifactId>
<name>OpenWorm SimulationEngine</name> <name>Geppetto</name>
<version>1.0.0</version> <version>0.0.1</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<modules> <modules>
<module>../org.openworm.simulationengine.core</module> <module>../org.geppetto.core</module>
<module>../org.openworm.simulationengine.model.sph</module> <module>../org.geppetto.model.sph</module>
<module>../org.openworm.simulationengine.solver.sph</module> <module>../org.geppetto.solver.sph</module>
<module>../org.openworm.simulationengine.simulator.sph</module> <module>../org.geppetto.simulator.sph</module>
<module>../org.openworm.simulationengine.simulation</module> <module>../org.geppetto.simulation</module>
<module>../org.openworm.simulationengine.frontend</module> <module>../org.geppetto.frontend</module>
</modules> </modules>
</project> </project>

0 comments on commit d019d55

Please sign in to comment.