]> git.somenet.org - pub/jan/aic18.git/blob - sentiment-analysis/pom.xml
pom.xml for camunda
[pub/jan/aic18.git] / sentiment-analysis / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>at.ac.tuwien.infosys.aic</groupId>
4   <artifactId>sentiment-analysis</artifactId>
5   <version>0.0.1-SNAPSHOT</version>
6   <packaging>war</packaging>
7
8   <properties>
9     <camunda.version>7.9.0</camunda.version>
10     <maven.compiler.source>1.6</maven.compiler.source>
11     <maven.compiler.target>1.6</maven.compiler.target>
12     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
13     <failOnMissingWebXml>false</failOnMissingWebXml>
14   </properties>
15
16   <dependencies>
17
18     <dependency>
19       <groupId>org.camunda.bpm</groupId>
20       <artifactId>camunda-engine</artifactId>
21       <version>${camunda.version}</version>
22       <scope>provided</scope>
23     </dependency>
24
25     <dependency>
26       <groupId>javax.servlet</groupId>
27       <artifactId>javax.servlet-api</artifactId>
28       <version>3.0.1</version>
29       <scope>provided</scope>
30     </dependency>
31
32   </dependencies>
33
34   <repositories>
35     <repository>
36       <id>camunda-bpm-nexus</id>
37       <name>camunda-bpm-nexus</name>
38       <url>https://app.camunda.com/nexus/content/groups/public</url>
39     </repository>
40   </repositories>
41   
42 </project>