|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <groupId>eu.chargetime.ocpp</groupId> |
| 8 | + <artifactId>v1_6</artifactId> |
| 9 | + <version>1.0-SNAPSHOT</version> |
| 10 | + |
| 11 | + <dependencies> |
| 12 | + <dependency> |
| 13 | + <groupId>eu.chargetime.ocpp</groupId> |
| 14 | + <artifactId>common</artifactId> |
| 15 | + <version>1.0-SNAPSHOT</version> |
| 16 | + </dependency> |
| 17 | + <dependency> |
| 18 | + <groupId>org.json</groupId> |
| 19 | + <artifactId>json</artifactId> |
| 20 | + <version>20160212</version> |
| 21 | + <scope>compile</scope> |
| 22 | + </dependency> |
| 23 | + <dependency> |
| 24 | + <groupId>org.java-websocket</groupId> |
| 25 | + <artifactId>Java-WebSocket</artifactId> |
| 26 | + <version>1.3.0</version> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>junit</groupId> |
| 30 | + <artifactId>junit</artifactId> |
| 31 | + <version>4.12</version> |
| 32 | + <scope>test</scope> |
| 33 | + </dependency> |
| 34 | + <dependency> |
| 35 | + <groupId>org.mockito</groupId> |
| 36 | + <artifactId>mockito-core</artifactId> |
| 37 | + <version>1.10.19</version> |
| 38 | + <scope>test</scope> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>org.hamcrest</groupId> |
| 42 | + <artifactId>hamcrest-core</artifactId> |
| 43 | + <version>1.3</version> |
| 44 | + <scope>test</scope> |
| 45 | + </dependency> |
| 46 | + </dependencies> |
| 47 | + |
| 48 | + <build> |
| 49 | + <plugins> |
| 50 | + <plugin> |
| 51 | + <groupId>org.apache.maven.plugins</groupId> |
| 52 | + <artifactId>maven-compiler-plugin</artifactId> |
| 53 | + <configuration> |
| 54 | + <source>1.8</source> |
| 55 | + <target>1.8</target> |
| 56 | + </configuration> |
| 57 | + <version>3.5.1</version> |
| 58 | + </plugin> |
| 59 | + </plugins> |
| 60 | + </build> |
| 61 | + |
| 62 | +</project> |
0 commit comments