Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <parent> |
| 4 | <groupId>org.onap.so</groupId> |
| 5 | <artifactId>bpmn</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 6 | <version>1.4.0-SNAPSHOT</version> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>so-bpmn-tasks</artifactId> |
| 10 | <packaging>jar</packaging> |
| 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 14 | <maven.compiler.target>1.8</maven.compiler.target> |
| 15 | <maven.compiler.source>1.8</maven.compiler.source> |
| 16 | </properties> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 17 | <build> |
| 18 | <plugins> |
| 19 | <plugin> |
| 20 | <groupId>org.apache.maven.plugins</groupId> |
| 21 | <artifactId>maven-surefire-plugin</artifactId> |
| 22 | <executions> |
| 23 | <execution> |
| 24 | <id>default-test</id> |
| 25 | <goals> |
| 26 | <goal>test</goal> |
| 27 | </goals> |
| 28 | <configuration> |
| 29 | <includes> |
| 30 | <include>**/UnitTestSuite.java</include> |
| 31 | </includes> |
| 32 | </configuration> |
| 33 | </execution> |
| 34 | <execution> |
| 35 | <id>integration-test</id> |
| 36 | <goals> |
| 37 | <goal>test</goal> |
| 38 | </goals> |
| 39 | <configuration> |
| 40 | <includes> |
| 41 | <include>**/IntegrationTestSuite.java</include> |
| 42 | </includes> |
| 43 | </configuration> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |
Benjamin, Max (mb388a) | 7f1a205 | 2018-11-28 11:05:39 -0500 | [diff] [blame] | 47 | <plugin> |
| 48 | <groupId>io.swagger</groupId> |
| 49 | <artifactId>swagger-codegen-maven-plugin</artifactId> |
| 50 | <version>2.3.1</version> |
| 51 | <executions> |
| 52 | <execution> |
| 53 | <goals> |
| 54 | <goal>generate</goal> |
| 55 | </goals> |
| 56 | <configuration> |
| 57 | <inputSpec>${project.basedir}/src/main/resources/naming-service/swagger.json</inputSpec> |
| 58 | <apiPackage>org.onap.namingservice.api</apiPackage> |
| 59 | <modelPackage>org.onap.namingservice.model</modelPackage> |
| 60 | <invokerPackage>org.onap.namingservice.invoker</invokerPackage> |
| 61 | </configuration> |
| 62 | </execution> |
| 63 | </executions> |
| 64 | <configuration> |
| 65 | <inputSpec>${project.basedir}/src/main/resources/swagger.json</inputSpec> |
| 66 | <language>java</language> |
| 67 | <configOptions> |
| 68 | <sourceFolder>src/gen/java/main</sourceFolder> |
| 69 | <serializableModel>true</serializableModel> |
| 70 | </configOptions> |
| 71 | <output>${project.build.directory}/generated-sources</output> |
| 72 | <generateApis>false</generateApis> |
| 73 | <library>jersey2</library> |
| 74 | <generateSupportingFiles>false</generateSupportingFiles> |
| 75 | </configuration> |
| 76 | </plugin> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 77 | </plugins> |
| 78 | </build> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 79 | <dependencyManagement> |
| 80 | <dependencies> |
| 81 | <dependency> |
| 82 | <!-- Import dependency management from Spring Boot --> |
| 83 | <groupId>org.springframework.boot</groupId> |
| 84 | <artifactId>spring-boot-dependencies</artifactId> |
| 85 | <version>${springboot.version}</version> |
| 86 | <type>pom</type> |
| 87 | <scope>import</scope> |
| 88 | </dependency> |
| 89 | </dependencies> |
| 90 | </dependencyManagement> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 91 | <dependencies> |
| 92 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 93 | <groupId>org.camunda.bpm.springboot</groupId> |
| 94 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
| 95 | <version>${camunda.springboot.version}</version> |
| 96 | <scope>test</scope> |
| 97 | </dependency> |
| 98 | <dependency> |
| 99 | <groupId>org.springframework.cloud</groupId> |
| 100 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 101 | <version>1.2.4.RELEASE</version> |
| 102 | <scope>test</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.springframework.boot</groupId> |
| 106 | <artifactId>spring-boot-starter-test</artifactId> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
| 109 | <dependency> |
| 110 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 111 | <artifactId>camunda-bpm-mockito</artifactId> |
| 112 | <version>3.2.1</version> |
| 113 | <scope>test</scope> |
| 114 | </dependency> |
| 115 | <dependency> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 116 | <groupId>org.onap.so</groupId> |
| 117 | <artifactId>MSOCommonBPMN</artifactId> |
| 118 | <version>${project.version}</version> |
| 119 | </dependency> |
| 120 | <dependency> |
| 121 | <groupId>org.onap.so</groupId> |
| 122 | <artifactId>so-bpmn-infrastructure-common</artifactId> |
| 123 | <version>${project.version}</version> |
| 124 | </dependency> |
| 125 | <dependency> |
| 126 | <groupId>org.onap.sdnc.northbound</groupId> |
| 127 | <artifactId>generic-resource-api-client</artifactId> |
Smokowski, Steve (ss835w) | 65939db | 2018-12-06 16:58:30 -0500 | [diff] [blame^] | 128 | <version>1.5.0-SNAPSHOT</version> |
Benjamin, Max (mb388a) | e4f7e56 | 2018-08-11 00:17:59 -0400 | [diff] [blame] | 129 | <exclusions> |
| 130 | <exclusion> |
| 131 | <groupId>javax.ws.rs</groupId> |
| 132 | <artifactId>jsr311-api</artifactId> |
| 133 | </exclusion> |
| 134 | </exclusions> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 135 | </dependency> |
| 136 | <dependency> |
| 137 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 138 | <artifactId>mariaDB4j</artifactId> |
| 139 | <version>2.2.3</version> |
| 140 | <scope>test</scope> |
| 141 | </dependency> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 142 | <dependency> |
| 143 | <groupId>org.apache.commons</groupId> |
| 144 | <artifactId>commons-lang3</artifactId> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 145 | </dependency> |
| 146 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 147 | </project> |