escrito-docker/.m2/repository/com/github/fommil/jniloader/1.1/jniloader-1.1.pom

106 lines
3.6 KiB
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>com.github.fommil</groupId>
<artifactId>jniloader</artifactId>
<version>1.1</version>
<!-- mvn clean deploy -Psonatype-oss-release -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<packaging>jar</packaging>
<name>JniLoader</name>
<description>Lightweight convenience for loading JNI natives.</description>
<url>https://github.com/fommil/jniloader</url>
<licenses>
<license>
<name>LGPL</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
</license>
</licenses>
<scm>
<url>https://github.com/fommil/jniloader</url>
<connection>scm:git:git@github.com:fommil/jniloader.git</connection>
<developerConnection>scm:git:git@github.com:fommil/jniloader.git</developerConnection>
</scm>
<developers>
<developer>
<name>Sam Halliday</name>
<id>fommil</id>
<email>sam.halliday@gmail.com</email>
</developer>
</developers>
<issueManagement>
<system>github</system>
<url>https://github.com/fommil/jniloader/issues</url>
</issueManagement>
<prerequisites>
<maven>3.0.3</maven>
</prerequisites>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>0.12.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- mvn versions:display-plugin-updates -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- <doCheck>true</doCheck> -->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>