-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #868 from openworm/development
Release 0.4.2
- Loading branch information
Showing
57 changed files
with
20,020 additions
and
2,039 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0"> | ||
<wb-module deploy-name="org.geppetto.frontend"> | ||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/> | ||
<wb-resource deploy-path="/js/" source-path="/src/main/webapp/js"/> | ||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/> | ||
<wb-resource deploy-path="/font/" source-path="/src/main/webapp/fonts"/> | ||
<wb-resource deploy-path="/" source-path="/WebContent" tag="defaultRootSource"/> | ||
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/> | ||
<wb-resource deploy-path="/" source-path="/src/main/webapp"/> | ||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/> | ||
<property name="context-root" value="org.geppetto.frontend"/> | ||
<property name="java-output-path" value="/org.geppetto.frontend/target/classes"/> | ||
<property name="component.exclusion.patterns" value="node_modules/**,WEB-INF/classes/lib/*.jar,WEB-INF/lib/*.jar,node/**"/> | ||
<property name="java-output-path" value="/org.geppetto.frontend/target/classes"/> | ||
</wb-module> | ||
</project-modules> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<faceted-project> | ||
<runtime name="Virgo Runtime"/> | ||
<fixed facet="wst.jsdt.web"/> | ||
<installed facet="wst.jsdt.web" version="1.0"/> | ||
<installed facet="osgi.bundle" version="4.2"/> | ||
<installed facet="java" version="1.7"/> | ||
<installed facet="wst.jsdt.web" version="1.0"/> | ||
<installed facet="org.eclipse.virgo.server.bundle" version="1.0"/> | ||
<installed facet="jst.web" version="2.5"/> | ||
<installed facet="jst.web" version="3.0"/> | ||
</faceted-project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 5 additions & 4 deletions
9
src/main/java/org/geppetto/frontend/ApplicationListenerBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
package org.geppetto.frontend; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
import org.springframework.context.ApplicationListener; | ||
import org.springframework.context.event.ContextRefreshedEvent; | ||
|
||
public class ApplicationListenerBean implements ApplicationListener<ContextRefreshedEvent> | ||
public class ApplicationListenerBean implements ApplicationListener | ||
{ | ||
@Override | ||
public void onApplicationEvent(ContextRefreshedEvent event) | ||
{ | ||
// DONT'DO ANYTHING THAT HAS TO DO WITH THE DATABASE HERE OR DATANUCLEUS BREAKS | ||
public void onApplicationEvent(ApplicationEvent event) { | ||
// TODO Auto-generated method stub | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.