Gitlab migration
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
<?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>
|
||||
|
||||
<artifactId>flowable-local-control</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>flowable-local-control</name>
|
||||
<description>flowable local Flowable Control</description>
|
||||
|
||||
<parent>
|
||||
<groupId>com.flowable.local</groupId>
|
||||
<artifactId>14</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!-- flowable local -->
|
||||
<!-- =============== -->
|
||||
<dependency>
|
||||
<groupId>org.postgresql</groupId>
|
||||
<artifactId>postgresql</artifactId>
|
||||
<version>${org.postgresql.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Flowable Control -->
|
||||
<!-- ================ -->
|
||||
<dependency>
|
||||
<groupId>com.flowable.control</groupId>
|
||||
<artifactId>flowable-spring-boot-starter-control</artifactId>
|
||||
<version>${com.flowable.platform.version}</version>
|
||||
</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>
|
||||
<version>${com.h2database.version}</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package com.flowable.local.control;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class FlowableLocalControlApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(FlowableLocalControlApplication.class, args);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
# == Embedded DB ==
|
||||
spring.datasource.driver-class-name=org.h2.Driver
|
||||
spring.datasource.url=jdbc:h2:file:./h2-database/flowable-control;DB_CLOSE_ON_EXIT=FALSE
|
||||
@@ -0,0 +1,34 @@
|
||||
server.port=8092
|
||||
server.servlet.context-path=/
|
||||
|
||||
spring.datasource.driver-class-name=org.postgresql.Driver
|
||||
spring.datasource.url=jdbc:postgresql://localhost:5432/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=8090
|
||||
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
|
||||
Reference in New Issue
Block a user