initial pom.xml; incomplete but it's a start

This commit is contained in:
Laurent Perron
2019-06-20 22:17:21 +02:00
parent 88ee896462
commit 148f14ffa0

21
pom.xml Normal file
View File

@@ -0,0 +1,21 @@
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.ortools</groupId>
<artifactId>ortools-java</artifactId>
<version>7.1</version>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.8.0</version>
</dependency>
</dependencies>
<build>
<directory>${project.basedir}</directory>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<sourceDirectory>${project.basedir}/ortools</sourceDirectory>
</build>
</project>