Initial commit
This commit is contained in:
Vendored
BIN
Binary file not shown.
@@ -0,0 +1,82 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>com.customer</groupId>
|
||||
<artifactId>customer-parent</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>customer-control</artifactId>
|
||||
<name>customer-control</name>
|
||||
<description>customer-control</description>
|
||||
<url/>
|
||||
<licenses>
|
||||
<license/>
|
||||
</licenses>
|
||||
<developers>
|
||||
<developer/>
|
||||
</developers>
|
||||
<scm>
|
||||
<connection/>
|
||||
<developerConnection/>
|
||||
<tag/>
|
||||
<url/>
|
||||
</scm>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!-- Flowable Control -->
|
||||
<!-- ================ -->
|
||||
<dependency>
|
||||
<groupId>com.flowable.control</groupId>
|
||||
<artifactId>flowable-spring-boot-starter-control</artifactId>
|
||||
<version>${com.flowable.platform.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Spring Boot -->
|
||||
<!-- =========== -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Testing -->
|
||||
<!-- ======= -->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.h2database</groupId>
|
||||
<artifactId>h2</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.customer.control;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class ControlApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ControlApplication.class, args);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
server.port=8107
|
||||
server.servlet.context-path=/
|
||||
|
||||
#spring.datasource.driver-class-name=org.postgresql.Driver
|
||||
spring.datasource.url=jdbc:postgresql://localhost:5435/flowable
|
||||
spring.datasource.username=flowable
|
||||
spring.datasource.password=flowable
|
||||
|
||||
# In order for hot swapping to work for the custom.js and custom.css
|
||||
spring.thymeleaf.cache=false
|
||||
spring.web.resources.chain.cache=false
|
||||
|
||||
# Enable all endpoints over HTTP
|
||||
management.endpoints.web.exposure.include=*
|
||||
management.endpoint.health.show-details=ALWAYS
|
||||
# Pretty-print JSON responses
|
||||
spring.jackson.serialization.indent_output=true
|
||||
|
||||
# TODO Change these to an other random string with a length of 16 characters
|
||||
# Used to encrypt your passwords. After a change existing password become invalid!
|
||||
flowable.control.app.security.encryption.credentials-i-v-spec=fh39chqoxjDF3fhb
|
||||
flowable.control.app.security.encryption.credentials-secret-spec=lw91VtkPq84nGqiJ
|
||||
|
||||
flowable.control.app.cluster-config.name=Default Cluster
|
||||
flowable.control.app.cluster-config.description=Default Flowable Cluster
|
||||
flowable.control.app.cluster-config.server-address=http://localhost
|
||||
flowable.control.app.cluster-config.port=8105
|
||||
flowable.control.app.cluster-config.context-root=/
|
||||
flowable.control.app.cluster-config.user-name=admin
|
||||
flowable.control.app.cluster-config.password=test
|
||||
|
||||
flowable.control.app.db-store-enabled=false
|
||||
flowable.control.app.cluster-type=work
|
||||
flowable.control.app.user-store.password=test
|
||||
@@ -0,0 +1,34 @@
|
||||
server.port=8107
|
||||
server.servlet.context-path=/
|
||||
|
||||
#spring.datasource.driver-class-name=org.postgresql.Driver
|
||||
spring.datasource.url=jdbc:postgresql://localhost:5435/flowable
|
||||
spring.datasource.username=flowable
|
||||
spring.datasource.password=flowable
|
||||
|
||||
# In order for hot swapping to work for the custom.js and custom.css
|
||||
spring.thymeleaf.cache=false
|
||||
spring.web.resources.chain.cache=false
|
||||
|
||||
# Enable all endpoints over HTTP
|
||||
management.endpoints.web.exposure.include=*
|
||||
management.endpoint.health.show-details=ALWAYS
|
||||
# Pretty-print JSON responses
|
||||
spring.jackson.serialization.indent_output=true
|
||||
|
||||
# TODO Change these to an other random string with a length of 16 characters
|
||||
# Used to encrypt your passwords. After a change existing password become invalid!
|
||||
flowable.control.app.security.encryption.credentials-i-v-spec=fh39chqoxjDF3fhb
|
||||
flowable.control.app.security.encryption.credentials-secret-spec=lw91VtkPq84nGqiJ
|
||||
|
||||
flowable.control.app.cluster-config.name=Default Cluster
|
||||
flowable.control.app.cluster-config.description=Default Flowable Cluster
|
||||
flowable.control.app.cluster-config.server-address=http://localhost
|
||||
flowable.control.app.cluster-config.port=8105
|
||||
flowable.control.app.cluster-config.context-root=/
|
||||
flowable.control.app.cluster-config.user-name=admin
|
||||
flowable.control.app.cluster-config.password=test
|
||||
|
||||
flowable.control.app.db-store-enabled=false
|
||||
flowable.control.app.cluster-type=work
|
||||
flowable.control.app.user-store.password=test
|
||||
Binary file not shown.
Reference in New Issue
Block a user