1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.raisercostin</groupId>
<artifactId>maven-defaults-raisercostin</artifactId>
<version>1.1</version>
</parent>
<groupId>com.sun</groupId>
<artifactId>yanfs</artifactId>
<version>1.4</version>
<name>yanfs</name>
<description>This project represents a Java implementation of the XDR, RPC, NFSv2, and NFSv3 protocols in client side form. WebNFS was the original name for this implementation but the name has changed to reflect the expanded scope of the project to include a server side implementation. </description>
<url>${git.url}</url>
<scm>
<connection>scm:git:${git.url}.git</connection>
<developerConnection>scm:git:${git.url}.git</developerConnection>
<url>${git.url}</url>
<tag>yanfs-1.4</tag>
</scm>
<distributionManagement>
<repository>
<id>${dist.id.prefix}-maven-releases</id>
<url>https://api.bintray.com/maven/${bintray.user}/${bintray.repo}/${bintray.package}/;publish=1</url>
</repository>
</distributionManagement>
<issueManagement>
<system>Github</system>
<url>https://github.com/raisercostin/${project.artifactId}/issues</url>
</issueManagement>
<properties>
<git.userOrGroup>raisercostin</git.userOrGroup>
<git.repo>${project.artifactId}</git.repo>
<git.host>github.com</git.host>
<git.url>https://${git.host}/${git.userOrGroup}/${git.repo}</git.url>
<org>raisercostin</org>
<dist.id.prefix>bintray</dist.id.prefix>
<bintray.user>raisercostin</bintray.user>
<bintray.repo>maven</bintray.repo>
<bintray.package>${project.artifactId}</bintray.package>
<maven.build.timestamp.format>yyyy-MM-dd_HH:mm:ss</maven.build.timestamp.format>
<timestamp>${maven.build.timestamp}</timestamp>
<dist.url>https://api.bintray.com/maven/${bintray.user}/${bintray.repo}/${bintray.package}</dist.url>
<dist.release.url>${dist.url}/releases/</dist.release.url>
<dist.snapshot.url>${dist.url}/snapshots/</dist.snapshot.url>
<dist.site.url>${dist.url}/sites/${project.groupId}-${project.artifactId}-${project.version}</dist.site.url>
<createChecksum>false</createChecksum>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.7</java.version>
<target.java.version>1.7</target.java.version>
<source.java.version>1.7</source.java.version>
<target.jvm.version>1.7</target.jvm.version>
</properties>
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Costin Grigore</name>
<email>raisercostin@gmail.com</email>
<organization>raisercostin</organization>
<organizationUrl>http://raisercostin.org</organizationUrl>
</developer>
</developers>
<repositories>
<repository>
<id>jcenter-bintray</id>
<url>https://jcenter.bintray.com/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>raisercostin-bintray</id>
<url>https://dl.bintray.com/raisercostin/maven</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>
|