camunda

Untitled

Apr 24th, 2018
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.90 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.camunda</groupId>
  5.     <artifactId>loancamunda</artifactId>
  6.     <version>${artifact-version}</version>
  7.     <packaging>war</packaging>
  8.     <name>loancamunda</name>
  9.     <description>Track a loan-request in camunda</description>
  10.     <parent>
  11.         <groupId>org.springframework.boot</groupId>
  12.         <artifactId>spring-boot-starter-parent</artifactId>
  13.         <version>1.5.8.RELEASE</version>
  14.     </parent>
  15.     <properties>
  16.         <artifact-version>1.0.2</artifact-version>
  17.         <springboot.camunda.version>2.3.0</springboot.camunda.version>
  18.         <failOnMissingWebXml>false</failOnMissingWebXml>
  19.         <maven.compiler.source>1.8</maven.compiler.source>
  20.         <maven.compiler.target>1.8</maven.compiler.target>
  21.     </properties>
  22.     <dependencyManagement>
  23.         <dependencies>
  24.             <dependency>
  25.                 <groupId>org.springframework.boot</groupId>
  26.                 <artifactId>spring-boot-dependencies</artifactId>
  27.                 <version>1.5.8.RELEASE</version>
  28.                 <type>pom</type>
  29.                 <scope>import</scope>
  30.             </dependency>
  31.         </dependencies>
  32.     </dependencyManagement>
  33.     <dependencies>
  34.         <dependency>
  35.             <groupId>org.camunda.bpm.springboot</groupId>
  36.             <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
  37.             <version>${springboot.camunda.version}</version>
  38.         </dependency>
  39.         <dependency>
  40.             <groupId>org.camunda.bpm.springboot</groupId>
  41.             <artifactId>camunda-bpm-spring-boot-starter-rest</artifactId>
  42.             <version>${springboot.camunda.version}</version>
  43.         </dependency>
  44.         <dependency>
  45.             <groupId>org.codehaus.groovy</groupId>
  46.             <artifactId>groovy-all</artifactId>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>org.springframework.boot</groupId>
  50.             <artifactId>spring-boot-starter-tomcat</artifactId>
  51.             <scope>provided</scope>
  52.         </dependency>
  53.         <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-jdbc -->
  54.         <dependency>
  55.             <groupId>org.springframework.boot</groupId>
  56.             <artifactId>spring-boot-starter-jdbc</artifactId>
  57.         </dependency>
  58.         <dependency>
  59.             <groupId>mysql</groupId>
  60.             <artifactId>mysql-connector-java</artifactId>
  61.         </dependency>
  62.         <!-- Spring boot admin client app -->
  63.         <dependency>
  64.             <groupId>de.codecentric</groupId>
  65.             <artifactId>spring-boot-admin-starter-client</artifactId>
  66.             <version>1.5.7</version>
  67.         </dependency>
  68.     </dependencies>
  69.     <build>
  70.         <plugins>
  71.             <plugin>
  72.                 <groupId>org.springframework.boot</groupId>
  73.                 <artifactId>spring-boot-maven-plugin</artifactId>
  74.                 <!-- <configuration> <layout>ZIP</layout> </configuration> -->
  75.                 <executions>
  76.                     <execution>
  77.                         <goals>
  78.                             <goal>repackage</goal>
  79.                         </goals>
  80.                     </execution>
  81.                 </executions>
  82.             </plugin>
  83.         </plugins>
  84.         <finalName>loancamunda##${artifact-version}</finalName>
  85.     </build>
  86. </project>
Add Comment
Please, Sign In to add comment