Path: blob/master/java/PlateRecognizer/pom.xml
643 views
<?xml version="1.0" encoding="UTF-8"?>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>com.mycompany</groupId>4<artifactId>NumberPlate</artifactId>5<version>1.0-SNAPSHOT</version>6<packaging>jar</packaging>7<properties>8<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>9<maven.compiler.source>1.8</maven.compiler.source>10<maven.compiler.target>1.8</maven.compiler.target>11</properties>12<dependencies>13<dependency>14<groupId>com.konghq</groupId>15<artifactId>unirest-java</artifactId>16<version>3.1.00</version>17<classifier>standalone</classifier>18</dependency>19</dependencies>20</project>2122