Gitlab migration
This commit is contained in:
@@ -0,0 +1,79 @@
|
||||
<?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-design-angular</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>flowable-local-design-angular</name>
|
||||
<description>flowable local Flowable Design Angular</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 Design -->
|
||||
<!-- =============== -->
|
||||
<dependency>
|
||||
<groupId>com.flowable.design.angular</groupId>
|
||||
<artifactId>flowable-spring-boot-starter-design</artifactId>
|
||||
<version>${com.flowable.platform.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.flowable.platform</groupId>
|
||||
<artifactId>flowable-platform-palette-angular</artifactId>
|
||||
<version>${com.flowable.platform.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Spring Boot -->
|
||||
<!-- =========== -->
|
||||
<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.design.angular;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class FlowableLocalDesignAngularApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(FlowableLocalDesignAngularApplication.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-design-angular;DB_CLOSE_ON_EXIT=FALSE
|
||||
@@ -0,0 +1,26 @@
|
||||
server.port=8091
|
||||
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
|
||||
|
||||
flowable.modeler.app.user-store.password=test
|
||||
flowable.common.app.idm-url=http://localhost:8090
|
||||
flowable.common.app.idm-admin.user=admin
|
||||
flowable.common.app.idm-admin.password=test
|
||||
|
||||
flowable.modeler.app.db-store-enabled=false
|
||||
flowable.modeler.app.deployment-api-url=http://localhost:8090/app-api
|
||||
flowable.modeler.app.undeployment-api-url=http://localhost:8090/platform-api/app-deployments
|
||||
Reference in New Issue
Block a user