-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df67cf7
commit 76087bd
Showing
32 changed files
with
374 additions
and
377 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ out | |
test-run | ||
.idea | ||
.ideaDataSources | ||
classes | ||
classes | ||
.DS_Store |
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
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
version=1.3.0-SNAPSHOT |
Binary file not shown.
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,4 +1,4 @@ | ||
-- begin DDCRD_DIAGNOSE_EXECUTION_LOG | ||
alter table DDCRD_DIAGNOSE_EXECUTION_LOG add constraint FK_DDCRD_DIAGNOSE_EXECUTION_LOG_EXECUTION_RESULT_FILE foreign key (EXECUTION_RESULT_FILE_ID) references SYS_FILE(ID)^ | ||
create index IDX_DDCRD_DIAGNOSE_EXECUTION_LOG_EXECUTION_RESULT_FILE on DDCRD_DIAGNOSE_EXECUTION_LOG (EXECUTION_RESULT_FILE_ID)^ | ||
-- end DDCRD_DIAGNOSE_EXECUTION_LOG | ||
-- end DDCRD_DIAGNOSE_EXECUTION_LOG |
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
73 changes: 25 additions & 48 deletions
73
modules/global/src/de/diedavids/cuba/runtimediagnose/app-component.xml
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,57 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<app-component xmlns="http://schemas.haulmont.com/cuba/app-component.xsd" | ||
dependsOn="com.haulmont.cuba"> | ||
<module blocks="*" | ||
name="global"> | ||
<artifact appJar="true" | ||
name="runtime-diagnose-global"/> | ||
<property name="cuba.persistenceConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/persistence.xml"/> | ||
<property name="cuba.metadataConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/metadata.xml"/> | ||
<property name="cuba.viewsConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/views.xml"/> | ||
|
||
<module name="global" blocks="*"> | ||
<artifact name="runtime-diagnose-global" appJar="true"/> | ||
|
||
<property name="cuba.persistenceConfig" value="+de/diedavids/cuba/runtimediagnose/persistence.xml"/> | ||
<property name="cuba.metadataConfig" value="+de/diedavids/cuba/runtimediagnose/metadata.xml"/> | ||
<property name="cuba.viewsConfig" value="+de/diedavids/cuba/runtimediagnose/views.xml"/> | ||
</module> | ||
<module blocks="core" | ||
dependsOn="global" | ||
name="core"> | ||
<artifact appJar="true" | ||
name="runtime-diagnose-core"/> | ||
<property name="cuba.springContextConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/spring.xml"/> | ||
<property name="cuba.mainMessagePack" | ||
value="+de.diedavids.cuba.runtimediagnose.core"/> | ||
<artifact classifier="db" | ||
configuration="dbscripts" | ||
ext="zip" | ||
name="runtime-diagnose-core"/> | ||
<module name="core" dependsOn="global" blocks="core"> | ||
<artifact name="runtime-diagnose-core" appJar="true"/> | ||
<artifact name="runtime-diagnose-core" classifier="db" ext="zip" configuration="dbscripts"/> | ||
|
||
<property name="cuba.springContextConfig" value="+de/diedavids/cuba/runtimediagnose/spring.xml"/> | ||
<property name="cuba.mainMessagePack" value="+de.diedavids.cuba.runtimediagnose.core"/> | ||
</module> | ||
<module blocks="web,desktop" | ||
dependsOn="global" | ||
name="gui"> | ||
<artifact appJar="true" | ||
name="runtime-diagnose-gui"/> | ||
<module name="gui" dependsOn="global" blocks="web,desktop"> | ||
<artifact name="runtime-diagnose-gui" appJar="true"/> | ||
</module> | ||
<module blocks="web" | ||
dependsOn="gui" | ||
name="web"> | ||
<artifact appJar="true" | ||
name="runtime-diagnose-web"/> | ||
<artifact classifier="web" | ||
configuration="webcontent" | ||
ext="zip" | ||
name="runtime-diagnose-web"/> | ||
<property name="cuba.springContextConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/web-spring.xml"/> | ||
<module name="web" dependsOn="gui" blocks="web"> | ||
<artifact name="runtime-diagnose-web" appJar="true"/> | ||
<artifact name="runtime-diagnose-web" classifier="web" ext="zip" configuration="webcontent"/> | ||
|
||
<property name="cuba.springContextConfig" value="+de/diedavids/cuba/runtimediagnose/web-spring.xml"/> | ||
<property name="cuba.dispatcherSpringContextConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/web-dispatcher-spring.xml"/> | ||
<property name="cuba.windowConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/web-screens.xml"/> | ||
<property name="cuba.menuConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/web-menu.xml"/> | ||
<property name="cuba.permissionConfig" | ||
value="+de/diedavids/cuba/runtimediagnose/web-permissions.xml"/> | ||
<property name="cuba.mainMessagePack" | ||
value="+de.diedavids.cuba.runtimediagnose.web"/> | ||
<property name="cuba.windowConfig" value="+de/diedavids/cuba/runtimediagnose/web-screens.xml"/> | ||
<property name="cuba.menuConfig" value="+de/diedavids/cuba/runtimediagnose/web-menu.xml"/> | ||
<property name="cuba.permissionConfig" value="+de/diedavids/cuba/runtimediagnose/web-permissions.xml"/> | ||
<property name="cuba.mainMessagePack" value="+de.diedavids.cuba.runtimediagnose.web"/> | ||
</module> | ||
</app-component> | ||
</app-component> |
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
8 changes: 1 addition & 7 deletions
8
modules/web/src/de/diedavids/cuba/runtimediagnose/web-dispatcher-spring.xml
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,4 @@ | ||
<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-4.3.xsd | ||
http://www.springframework.org/schema/context | ||
http://www.springframework.org/schema/context/spring-context-4.3.xsd"> | ||
xmlns:context="http://www.springframework.org/schema/context"> | ||
|
||
</beans> |
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.