Download flowable-spring-boot-starter-basic-6.0.0.jar file

Introduction

You can download flowable-spring-boot-starter-basic-6.0.0.jar in this page.

License

Open Source

Type List

flowable-spring-boot-starter-basic-6.0.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.flowable/flowable-spring-boot-starter-basic/pom.properties
META-INF/maven/org.flowable/flowable-spring-boot-starter-basic/pom.xml
META-INF/spring-configuration-metadata.json
META-INF/spring.factories
org.flowable.spring.boot.AbstractProcessEngineAutoConfiguration.class
org.flowable.spring.boot.AbstractProcessEngineConfiguration.class
org.flowable.spring.boot.DataSourceProcessEngineAutoConfiguration.class
org.flowable.spring.boot.DispatcherServletConfiguration.class
org.flowable.spring.boot.EndpointAutoConfiguration.class
org.flowable.spring.boot.FlowableProperties.class
org.flowable.spring.boot.JpaProcessEngineAutoConfiguration.class
org.flowable.spring.boot.ProcessEngineConfigurationConfigurer.class
org.flowable.spring.boot.RestApiAutoConfiguration.class
org.flowable.spring.boot.SecurityAutoConfiguration.class
org.flowable.spring.boot.actuate.endpoint.ProcessEngineEndpoint.class
org.flowable.spring.boot.actuate.endpoint.ProcessEngineMvcEndpoint.class
org.flowable.spring.integration.Flowable.class
org.flowable.spring.integration.FlowableInboundGateway.class
org.flowable.spring.integration.IntegrationActivityBehavior.class
org.flowable.spring.integration.ProcessVariableHeaderMapper.class
org.flowable.spring.security.IdentityServiceUserDetailsService.class

Pom

flowable-spring-boot-starter-basic-6.0.0.pom file content.

<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>org.flowable</groupId>
		<artifactId>flowable-spring-boot-starters</artifactId>
		<version>6.0.0</version>
	</parent>

	<artifactId>flowable-spring-boot-starter-basic</artifactId>
	<!-- <properties> <spring.framework.version>4.1.4.RELEASE</spring.framework.version> 
		</properties> -->

	<dependencies>
		<!-- Support for auto-completion support in Boot 1.2 -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-configuration-processor</artifactId>
			<optional>true</optional>
		</dependency>

		<!-- common -->
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-engine</artifactId>
		</dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-spring</artifactId>

		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-jdbc</artifactId>
		</dependency>

		<!-- rest api -->
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-rest</artifactId>
			<exclusions>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-api</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.slf4j</groupId>
					<artifactId>slf4j-log4j12</artifactId>
				</exclusion>
			</exclusions>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-common-rest</artifactId>
			<optional>true</optional>
		</dependency>

		<!-- integration -->
		<dependency>
			<groupId>org.springframework.integration</groupId>
			<artifactId>spring-integration-java-dsl</artifactId>
			<version>${spring-integration-java-dsl.version}</version>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.codehaus.groovy</groupId>
			<artifactId>groovy</artifactId>
			<version>1.7.5</version>
			<scope>test</scope>
		</dependency>

		<!-- actuator -->
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-image-generator</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-bpmn-model</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.flowable</groupId>
			<artifactId>flowable-bpmn-layout</artifactId>
			<optional>true</optional>
		</dependency>


		<!-- boot -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
			<optional>true</optional>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-jpa</artifactId>
			<optional>true</optional>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-integration</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-security</artifactId>
			<optional>true</optional>
		</dependency>

		<!-- embedded DB for testing -->
		<dependency>
			<groupId>com.h2database</groupId>
			<artifactId>h2</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>distro</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-source-plugin</artifactId>
						<version>2.1.1</version>
						<executions>
							<execution>
								<id>attach-sources</id>
								<phase>package</phase>
								<goals>
									<goal>jar-no-fork</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

POM Entry

<dependency>
   <groupId>org.flowable</groupId>
   <artifactId>flowable-spring-boot-starter-basic</artifactId>
   <version>6.0.0</version>
</dependency>

Download

If you think the following flowable-spring-boot-starter-basic-6.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download flowable-spring-boot-starter-basic-6.0.0.jar file




PreviousNext

Related