| POM文件内容: |
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ cc.redberry.pipe: java library for implementation of concurrent pipelines
~ Copyright (c) 2010-2012
~ Bolotin Dmitriy <bolotin.dmitriy@gmail.com>
~
~ This program is free software: you can redistribute it and/or modify it
~ under the terms of the GNU General Public License as published by the Free
~ Software Foundation, either version 3 of the License, or (at your option)
~ any later version.
~
~ This program is distributed in the hope that it will be useful, but WITHOUT
~ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
~ more details.
~
~ You should have received a copy of the GNU General Public License along
~ with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>cc.redberry</groupId>
<artifactId>pipe</artifactId>
<version>0.9.3</version>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<name>pipe</name>
<description>
Java library for implementation of concurrent pipelines.
</description>
<licenses>
<license>
<name>GNU General Public License, version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>dbolotin</id>
<email>bolotin.dmitriy@gmail.com</email>
<name>Bolotin Dmitriy</name>
<organization>IBCH RAS</organization>
<organizationUrl>http://www.ibch.ru/</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
<role>tester</role>
<role>documentation</role>
</roles>
<timezone>UTC+04:00</timezone>
<url>https://bitbucket.org/dbolotin</url>
</developer>
<developer>
<id>mikesh</id>
<email>mikhail.shugay@gmail.com</email>
<name>Mikhail Shugay</name>
<organization>IBCH RAS</organization>
<organizationUrl>http://www.ibch.ru/</organizationUrl>
<roles>
<role>documentation</role>
</roles>
<timezone>UTC+04:00</timezone>
<url>https://bitbucket.org/mikesh</url>
</developer>
</developers>
<scm>
<connection>scm:hg:http://bitbucket.org/redberry/redberry-pipe</connection>
<!-- <tag>v0.9.2</tag> -->
<!-- <url>https://bitbucket.org/redberry/redberry-pipe/src/?at=v0.9.2</url> -->
<url>https://bitbucket.org/redberry/redberry-pipe/src/</url>
</scm>
<issueManagement>
<system>Bitbucket</system>
<url>https://bitbucket.org/redberry/redberry-pipe/issues</url>
</issueManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math</artifactId>
<version>2.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
|