will need to redirect some generated output to place files into this bwmirror project structure.
34 lines
979 B
XML
34 lines
979 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>org.clojars.gered</groupId>
|
|
<artifactId>bwmirror</artifactId>
|
|
<version>2.6</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>BWMirror</name>
|
|
<description>An API for SC:Broodwar AIs</description>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU Lesser General Public License v3.0</name>
|
|
<url>https://www.gnu.org/licenses/lgpl.html</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>clojars</id>
|
|
<name>Clojars repository</name>
|
|
<url>https://clojars.org/repo</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<properties>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
</properties>
|
|
|
|
</project> |