ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -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> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 5 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 6 | <artifactId>bpmn</artifactId> |
| 7 | <version>1.3.0-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | <modelVersion>4.0.0</modelVersion> |
| 10 | <artifactId>MSOCoreBPMN</artifactId> |
| 11 | <packaging>jar</packaging> |
ChrisC | 1ba1d19 | 2017-03-13 05:01:04 -0700 | [diff] [blame] | 12 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 13 | <build> |
| 14 | <plugins> |
| 15 | <plugin> |
| 16 | <groupId>org.apache.maven.plugins</groupId> |
| 17 | <artifactId>maven-compiler-plugin</artifactId> |
| 18 | <executions> |
| 19 | <execution> |
| 20 | <id>test-compile</id> |
| 21 | <phase>compile</phase> |
| 22 | <goals> |
| 23 | <goal>testCompile</goal> |
| 24 | </goals> |
| 25 | <configuration> |
| 26 | <skip>false</skip> |
| 27 | </configuration> |
| 28 | </execution> |
| 29 | </executions> |
| 30 | </plugin> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 31 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 32 | <plugin> |
| 33 | <groupId>org.apache.maven.plugins</groupId> |
| 34 | <artifactId>maven-jar-plugin</artifactId> |
| 35 | <version>3.0.2</version> |
| 36 | <executions> |
| 37 | <execution> |
| 38 | <id>tests-jar</id> |
| 39 | <phase>package</phase> |
| 40 | <goals> |
| 41 | <goal>test-jar</goal> |
| 42 | </goals> |
| 43 | <configuration> |
| 44 | <skip>false</skip> |
| 45 | </configuration> |
| 46 | </execution> |
| 47 | </executions> |
| 48 | </plugin> |
| 49 | </plugins> |
| 50 | </build> |
ChrisC | 025301d | 2017-01-31 11:40:03 +0100 | [diff] [blame] | 51 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 52 | <dependencies> |
| 53 | <!-- latest commons-fileupload --> |
| 54 | <dependency> |
| 55 | <groupId>commons-fileupload</groupId> |
| 56 | <artifactId>commons-fileupload</artifactId> |
Byung-Woo Jun | e9ee726 | 2018-03-19 09:33:53 -0400 | [diff] [blame] | 57 | <version>1.3.3</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>javax.servlet</groupId> |
| 61 | <artifactId>javax.servlet-api</artifactId> |
| 62 | <version>3.0.1</version> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.camunda.connect</groupId> |
| 67 | <artifactId>camunda-connect-connectors-all</artifactId> |
| 68 | <version>1.0.5</version> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.camunda.bpm</groupId> |
| 72 | <artifactId>camunda-engine-plugin-connect</artifactId> |
| 73 | <version>7.7.0</version> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.camunda.bpm</groupId> |
| 77 | <artifactId>camunda-engine</artifactId> |
| 78 | <version>7.7.0</version> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.codehaus.groovy</groupId> |
| 82 | <artifactId>groovy-all</artifactId> |
| 83 | <scope>compile</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>com.h2database</groupId> |
| 87 | <artifactId>h2</artifactId> |
| 88 | <scope>test</scope> |
| 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>net.sf.saxon</groupId> |
| 92 | <artifactId>Saxon-HE</artifactId> |
| 93 | </dependency> |
| 94 | <dependency> |
Arthur Martella | 22e015f | 2018-02-22 14:24:40 -0500 | [diff] [blame] | 95 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 96 | <artifactId>common</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>org.json</groupId> |
| 101 | <artifactId>json</artifactId> |
| 102 | <version>20160212</version> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.xmlunit</groupId> |
| 106 | <artifactId>xmlunit-core</artifactId> |
| 107 | <scope>test</scope> |
| 108 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 109 | <dependency> |
| 110 | <groupId>com.github.fge</groupId> |
| 111 | <artifactId>json-schema-validator</artifactId> |
| 112 | <version>2.2.6</version> |
| 113 | </dependency> |
| 114 | <dependency> |
| 115 | <groupId>com.github.fge</groupId> |
| 116 | <artifactId>json-schema-core</artifactId> |
| 117 | <version>1.2.4</version> |
| 118 | </dependency> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 119 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 120 | <groupId>org.springframework</groupId> |
| 121 | <artifactId>spring-beans</artifactId> |
Rob Daugherty | 38f7207 | 2018-03-14 02:07:32 -0400 | [diff] [blame] | 122 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>org.yaml</groupId> |
| 125 | <artifactId>snakeyaml</artifactId> |
| 126 | </dependency> |
xg353y | b6b7bef | 2017-04-11 13:30:42 +0200 | [diff] [blame] | 127 | </dependencies> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 128 | </project> |