Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | <parent> |
| 5 | <groupId>org.onap.so</groupId> |
| 6 | <artifactId>bpmn</artifactId> |
seshukm | adbd1c4 | 2020-08-03 19:23:51 +0530 | [diff] [blame] | 7 | <version>1.7.1-SNAPSHOT</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <artifactId>so-bpmn-building-blocks</artifactId> |
| 11 | <packaging>jar</packaging> |
| 12 | <properties> |
| 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 14 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 15 | </properties> |
| 16 | <build> |
| 17 | <plugins> |
| 18 | <plugin> |
| 19 | <groupId>org.apache.cxf</groupId> |
| 20 | <artifactId>cxf-codegen-plugin</artifactId> |
| 21 | <version>2.5.2</version> |
| 22 | </plugin> |
| 23 | <plugin> |
| 24 | <groupId>org.apache.maven.plugins</groupId> |
| 25 | <artifactId>maven-surefire-plugin</artifactId> |
| 26 | <executions> |
| 27 | <execution> |
| 28 | <id>default-test</id> |
| 29 | <goals> |
| 30 | <goal>test</goal> |
| 31 | </goals> |
| 32 | <configuration> |
| 33 | <includes> |
| 34 | <include>**/AllTestSuites.java</include> |
| 35 | </includes> |
| 36 | </configuration> |
| 37 | </execution> |
| 38 | </executions> |
| 39 | <configuration> |
| 40 | <parallel>suites</parallel> |
| 41 | </configuration> |
| 42 | </plugin> |
| 43 | </plugins> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 44 | |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 45 | <pluginManagement> |
| 46 | <plugins> |
| 47 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 48 | only. It has no influence on the Maven build itself. --> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 49 | <plugin> |
| 50 | <groupId>org.eclipse.m2e</groupId> |
| 51 | <artifactId>lifecycle-mapping</artifactId> |
| 52 | <version>1.0.0</version> |
| 53 | <configuration> |
| 54 | <lifecycleMappingMetadata> |
| 55 | <pluginExecutions> |
| 56 | <pluginExecution> |
| 57 | <pluginExecutionFilter> |
| 58 | <groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 59 | org.apache.maven.plugins |
| 60 | </groupId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 61 | <artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 62 | maven-antrun-plugin |
| 63 | </artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 64 | <versionRange> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 65 | [1.3,) |
| 66 | </versionRange> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 67 | <goals> |
| 68 | <goal>run</goal> |
| 69 | </goals> |
| 70 | </pluginExecutionFilter> |
| 71 | <action> |
| 72 | <ignore /> |
| 73 | </action> |
| 74 | </pluginExecution> |
| 75 | </pluginExecutions> |
| 76 | </lifecycleMappingMetadata> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </pluginManagement> |
| 81 | </build> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 82 | <dependencyManagement> |
| 83 | <dependencies> |
| 84 | <dependency> |
| 85 | <groupId>org.camunda.bpm</groupId> |
| 86 | <artifactId>camunda-bom</artifactId> |
| 87 | <version>${camunda.version}</version> |
| 88 | <scope>import</scope> |
| 89 | <type>pom</type> |
| 90 | </dependency> |
| 91 | </dependencies> |
| 92 | </dependencyManagement> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 93 | <dependencies> |
| 94 | <dependency> |
| 95 | <groupId>org.camunda.bpm</groupId> |
| 96 | <artifactId>camunda-engine</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.camunda.bpm.springboot</groupId> |
| 100 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 101 | <scope>test</scope> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <groupId>org.camunda.bpm.springboot</groupId> |
| 105 | <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 106 | <scope>test</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 110 | <artifactId>camunda-bpm-mockito</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.camunda.bpm.extension</groupId> |
| 115 | <artifactId>camunda-bpm-assert</artifactId> |
| 116 | <version>2.0-alpha2</version> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
| 119 | <dependency> |
| 120 | <groupId>org.assertj</groupId> |
| 121 | <artifactId>assertj-core</artifactId> |
| 122 | <version>1.7.0</version> |
| 123 | <scope>test</scope> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.springframework.boot</groupId> |
| 127 | <artifactId>spring-boot-starter-test</artifactId> |
| 128 | <scope>test</scope> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>com.h2database</groupId> |
| 132 | <artifactId>h2</artifactId> |
| 133 | <scope>test</scope> |
| 134 | </dependency> |
| 135 | <dependency> |
| 136 | <groupId>org.onap.so</groupId> |
| 137 | <artifactId>MSOCommonBPMN</artifactId> |
| 138 | <version>${project.version}</version> |
| 139 | </dependency> |
| 140 | <dependency> |
| 141 | <groupId>org.onap.so</groupId> |
| 142 | <artifactId>so-bpmn-tasks</artifactId> |
| 143 | <version>${project.version}</version> |
| 144 | </dependency> |
| 145 | <dependency> |
| 146 | <groupId>org.onap.so</groupId> |
| 147 | <artifactId>so-bpmn-infrastructure-common</artifactId> |
| 148 | <version>${project.version}</version> |
| 149 | </dependency> |
| 150 | <dependency> |
| 151 | <groupId>commons-net</groupId> |
| 152 | <artifactId>commons-net</artifactId> |
| 153 | <version>3.6</version> |
| 154 | </dependency> |
| 155 | <dependency> |
| 156 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 157 | <artifactId>mariaDB4j</artifactId> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame^] | 158 | <version>2.3.0</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 159 | <scope>test</scope> |
| 160 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 161 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 162 | </project> |