2018-10-13 20:49:24 +00:00
|
|
|
<?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>com.github.joonasvali.naturalmouse</groupId>
|
|
|
|
<artifactId>naturalmouse</artifactId>
|
2021-09-18 12:42:47 +00:00
|
|
|
<version>2.0.3</version>
|
2018-10-13 20:49:24 +00:00
|
|
|
<name>Natural Mouse Motion</name>
|
2018-10-20 16:57:43 +00:00
|
|
|
<url>https://github.com/JoonasVali/NaturalMouseMotion</url>
|
2018-10-13 20:49:24 +00:00
|
|
|
<description>This library provides a way to move cursor to specified coordinates on screen reliably,
|
|
|
|
while being randomly arced to look like real hand moved it there by using a mouse.
|
|
|
|
</description>
|
|
|
|
|
2018-10-20 16:57:43 +00:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>Joonas Vali</name>
|
|
|
|
<email>joonas.wali@gmail.com</email>
|
|
|
|
<url>https://github.com/JoonasVali</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://www.opensource.org/licenses/mit-license.php</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<properties>
|
2019-09-08 11:11:57 +00:00
|
|
|
<java.version.source>1.8</java.version.source>
|
|
|
|
<java.version.target>1.8</java.version.target>
|
|
|
|
<maven.compiler.source>${java.version.source}</maven.compiler.source>
|
|
|
|
<maven.compiler.target>${java.version.target}</maven.compiler.target>
|
2018-10-20 16:57:43 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2019-09-08 11:11:57 +00:00
|
|
|
<powermock.version>2.0.2</powermock.version>
|
2018-10-20 16:57:43 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>https://github.com/JoonasVali/NaturalMouseMotion</url>
|
|
|
|
<connection>scm:git:git@github.com:JoonasVali/NaturalMouseMotion.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:JoonasVali/NaturalMouseMotion.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
2018-10-13 20:49:24 +00:00
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.25</version>
|
|
|
|
</dependency>
|
2018-10-16 19:00:35 +00:00
|
|
|
<dependency>
|
2021-09-18 12:11:08 +00:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>5.7.2</version>
|
2018-10-16 19:00:35 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-02-10 14:55:42 +00:00
|
|
|
<dependency>
|
2021-09-18 12:11:08 +00:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-inline</artifactId>
|
|
|
|
<version>3.12.4</version>
|
2019-02-10 14:55:42 +00:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-10-13 20:49:24 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
2019-09-08 11:11:57 +00:00
|
|
|
<source>${java.version.source}</source>
|
|
|
|
<target>${java.version.target}</target>
|
2018-10-13 20:49:24 +00:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2018-11-13 19:42:43 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<version>3.1.0</version>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<index>true</index>
|
|
|
|
<manifestEntries>
|
|
|
|
<Automatic-Module-Name>com.github.joonasvali.naturalmouse</Automatic-Module-Name>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-09-18 12:11:08 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M5</version>
|
|
|
|
</plugin>
|
2018-10-13 20:49:24 +00:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2018-10-20 16:57:43 +00:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>release</id>
|
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>ossrh</id>
|
|
|
|
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>3.0.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-javadocs</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>sign-artifacts</id>
|
|
|
|
<phase>verify</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>sign</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
|
2018-10-13 20:49:24 +00:00
|
|
|
</project>
|