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) | 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> |
waqas.ikram | 9853763 | 2021-06-24 11:51:34 +0100 | [diff] [blame] | 7 | <version>1.9.0-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>MSOCoreBPMN</artifactId> |
| 11 | <packaging>jar</packaging> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 12 | <build> |
| 13 | <plugins> |
| 14 | <plugin> |
| 15 | <groupId>org.apache.maven.plugins</groupId> |
| 16 | <artifactId>maven-compiler-plugin</artifactId> |
| 17 | <executions> |
| 18 | <execution> |
| 19 | <id>test-compile</id> |
| 20 | <phase>compile</phase> |
| 21 | <goals> |
| 22 | <goal>testCompile</goal> |
| 23 | </goals> |
| 24 | <configuration> |
| 25 | <skip>false</skip> |
| 26 | </configuration> |
| 27 | </execution> |
| 28 | </executions> |
| 29 | </plugin> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 30 | <plugin> |
| 31 | <groupId>org.apache.maven.plugins</groupId> |
| 32 | <artifactId>maven-jar-plugin</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 33 | <executions> |
| 34 | <execution> |
| 35 | <id>tests-jar</id> |
| 36 | <phase>package</phase> |
| 37 | <goals> |
| 38 | <goal>test-jar</goal> |
| 39 | </goals> |
| 40 | <configuration> |
| 41 | <skip>false</skip> |
| 42 | </configuration> |
| 43 | </execution> |
| 44 | </executions> |
| 45 | </plugin> |
| 46 | </plugins> |
| 47 | </build> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 48 | <dependencies> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>commons-fileupload</groupId> |
| 51 | <artifactId>commons-fileupload</artifactId> |
Sangalang, Felix | 785fab5 | 2019-06-21 10:46:38 -0400 | [diff] [blame] | 52 | <version>1.4</version> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 55 | <groupId>org.camunda.bpm</groupId> |
| 56 | <artifactId>camunda-engine-plugin-connect</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.camunda.bpm</groupId> |
| 60 | <artifactId>camunda-engine</artifactId> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 61 | </dependency> |
| 62 | <dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 63 | <groupId>com.h2database</groupId> |
| 64 | <artifactId>h2</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>net.sf.saxon</groupId> |
| 69 | <artifactId>Saxon-HE</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.so</groupId> |
| 73 | <artifactId>common</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>org.json</groupId> |
| 78 | <artifactId>json</artifactId> |
| 79 | <version>20160212</version> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.xmlunit</groupId> |
| 83 | <artifactId>xmlunit-core</artifactId> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | <dependency> |
| 87 | <groupId>com.github.fge</groupId> |
| 88 | <artifactId>json-schema-validator</artifactId> |
| 89 | <version>2.2.6</version> |
| 90 | </dependency> |
Benjamin, Max (mb388a) | c0247ec | 2019-04-11 10:34:45 -0400 | [diff] [blame] | 91 | </dependencies> |
Arthur Martella | 62cd6aa | 2017-09-08 13:27:46 -0400 | [diff] [blame] | 92 | </project> |