107 lines
3.5 KiB
XML
107 lines
3.5 KiB
XML
<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">
|
|
<parent>
|
|
<groupId>org.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>me.legrange</groupId>
|
|
<artifactId>mikrotik</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Mikrotik API Java Client Library</name>
|
|
<url>https://github.com/GideonLeGrange/mikrotik-java</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>git@github.com:GideonLeGrange/mikrotik-java.git</url>
|
|
<connection>scm:git:git@github.com:GideonLeGrange/mikrotik-java.git</connection>
|
|
<developerConnection>scm:git:git@github.com:GideonLeGrange/mikrotik-java.git</developerConnection>
|
|
</scm>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<showDeprecation>true</showDeprecation>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>2.9.1</version>
|
|
<configuration>
|
|
<excludePackageNames>example</excludePackageNames>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|
|
|
|
|
|
##
|
|
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven</groupId>
|
|
<artifactId>maven</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Maven core</name>
|
|
<version>2.0</version>
|
|
<description>The maven main core project description</description>
|
|
<url>http://maven.apache.org</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<url>http://svn.apache.org/viewcvs.cgi/maven</url>
|
|
<connection>http://svn.apache.org/viewcvs.cgi/maven</connection>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<id>...</id>
|
|
<name>...</name>
|
|
<email>...</email>
|
|
</developer>
|
|
</developers>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>...</groupId>
|
|
<artifactId>...</artifactId>
|
|
<version>...</version>
|
|
</dependency>
|
|
...
|
|
</dependencies>
|
|
<!--
|
|
AVOID RELEASE REPOSITORY/PLUGINREPOSITORY:
|
|
<repositories></repositories>
|
|
<pluginRepositories></pluginRepositories>
|
|
-->
|
|
</project> |