forked from camunda/camunda-bpm-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(webapps): integrate webapps into build
related to CAM-12641
- Loading branch information
Showing
13 changed files
with
123 additions
and
242 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
File renamed without changes.
File renamed without changes.
62 changes: 31 additions & 31 deletions
62
...h2-webapp/src/main/webapp/WEB-INF/web.xml → ...h2-webapp/src/main/webapp/WEB-INF/web.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,31 +1,31 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<web-app id="activiti-cycle" version="2.5" | ||
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> | ||
|
||
<display-name>H2 Console</display-name> | ||
|
||
<description>H2 Console</description> | ||
|
||
<servlet> | ||
<servlet-name>H2Console</servlet-name> | ||
<servlet-class>org.h2.server.web.WebServlet</servlet-class> | ||
|
||
<init-param> | ||
<param-name>webAllowOthers</param-name> | ||
<param-value>true</param-value> | ||
</init-param> | ||
|
||
<load-on-startup>1</load-on-startup> | ||
</servlet> | ||
|
||
<servlet-mapping> | ||
<servlet-name>H2Console</servlet-name> | ||
<url-pattern>/h2/*</url-pattern> | ||
</servlet-mapping> | ||
|
||
<session-config> | ||
<session-timeout>30</session-timeout> | ||
</session-config> | ||
|
||
</web-app> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<web-app id="activiti-cycle" version="2.5" | ||
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> | ||
|
||
<display-name>H2 Console</display-name> | ||
|
||
<description>H2 Console</description> | ||
|
||
<servlet> | ||
<servlet-name>H2Console</servlet-name> | ||
<servlet-class>org.h2.server.web.WebServlet</servlet-class> | ||
|
||
<init-param> | ||
<param-name>webAllowOthers</param-name> | ||
<param-value>true</param-value> | ||
</init-param> | ||
|
||
<load-on-startup>1</load-on-startup> | ||
</servlet> | ||
|
||
<servlet-mapping> | ||
<servlet-name>H2Console</servlet-name> | ||
<url-pattern>/h2/*</url-pattern> | ||
</servlet-mapping> | ||
|
||
<session-config> | ||
<session-timeout>30</session-timeout> | ||
</session-config> | ||
|
||
</web-app> |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -34,11 +34,11 @@ See [plugin development guide](http://docs.camunda.org/latest/real-life/how-to/# | |
|
||
## Libraries | ||
|
||
### [camunda-bpm-sdk-js](https://github.com/camunda/camunda-bpm-webapp/tree/master/camunda-bpm-sdk-js) | ||
### [camunda-bpm-sdk-js](https://github.com/camunda/camunda-bpm-platform/tree/master/webapps/camunda-bpm-sdk-js) | ||
|
||
Has tools to work with the REST API and forms (included transitively via camunda-commons-ui). | ||
|
||
### [camunda-commons-ui](https://github.com/camunda/camunda-bpm-webapp/tree/master/camunda-commons-ui) | ||
### [camunda-commons-ui](https://github.com/camunda/camunda-bpm-platform/tree/master/webapps/camunda-commons-ui) | ||
|
||
Contains resources like images, [`.less`](http://lesscss.org) stylesheets as well as some [angular.js](http://angularjs.org) modules. | ||
|
||
|
@@ -49,7 +49,7 @@ Contains the translation files for all application texts in different languages. | |
|
||
## Development | ||
|
||
**Please note that with Camunda 7.14.0 we moved Cockpit to a separate build step. Check out the development build and prerequisites in the [Cockpit directory](https://github.com/camunda/camunda-bpm-webapp/tree/master/ui/cockpit).** | ||
**Please note that with Camunda 7.14.0 we moved Cockpit to a separate build step. Check out the development build and prerequisites in the [Cockpit directory](https://github.com/camunda/camunda-bpm-platform/tree/master/webapps/ui/cockpit).** | ||
|
||
### Prerequisite | ||
|
||
|
@@ -67,8 +67,8 @@ Installing the webapps is done by Grunt: | |
|
||
```sh | ||
# cd <path to your workspace> | ||
git clone [email protected]:camunda/camunda-bpm-webapp.git | ||
cd camunda-bpm-webapp | ||
git clone [email protected]:camunda/camunda-bpm-platform.git | ||
cd camunda-bpm-platform/webapps | ||
npm install | ||
grunt | ||
``` | ||
|
@@ -112,9 +112,9 @@ describe.only('Cockpit Dashboard Spec', function() { | |
The supported browsers are: | ||
- Chrome | ||
- Firefox | ||
- Edge 79+ | ||
- Chrome Latest | ||
- Firefox Latest | ||
- Edge Latest | ||
## Contributing | ||
|
Oops, something went wrong.