pvmanager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.epics</groupId>
<artifactId>pvmanager</artifactId>
<version>2.9.0</version>
</dependency><?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.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>9</version>
</parent>
<groupId>org.epics</groupId>
<artifactId>pvmanager</artifactId>
<version>2.9.0</version>
<name>pvmanager</name>
<description>A library to create well behaved clients for aggregating and processing
real-time live data.</description>
<issueManagement>
<url>https://github.com/diirt/diirt/issues</url>
<system>GitHub Issues</system>
</issueManagement>
<packaging>pom</packaging>
<url>http://pvmanager.diirt.org</url>
<inceptionYear>2010</inceptionYear>
<licenses>
<license>
<name>GNU General Public License 2 with the Classpath Exception</name>
<url>LICENSE.TXT</url>
</license>
</licenses>
<scm>
<url>https://github.com/diirt/pvmanager.git</url>
<connection>scm:git:https://github.com/diirt/pvmanager.git</connection>
<developerConnection>scm:git:https://github.com/diirt/pvmanager.git</developerConnection>
<tag>pvmanager-2.9.0</tag>
</scm>
<developers>
<developer>
<id>carcassi</id>
<name>Gabriele Carcassi</name>
<email>carcassi@bnl.gov</email>
<organization>BNL</organization>
<timezone>-5</timezone>
</developer>
</developers>
<ciManagement>
<system>jenkins</system>
<url>https://openepics.ci.cloudbees.com/</url>
<notifiers>
<notifier>
<type>mail</type>
<sendOnError>true</sendOnError>
<sendOnFailure>true</sendOnFailure>
<sendOnSuccess>false</sendOnSuccess>
<sendOnWarning>false</sendOnWarning>
<configuration>
<address>diirt-devel@lists.sourceforge.net</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<mailingLists>
<mailingList>
<name>User support and announcements</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/diirt-users</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/diirt-users</unsubscribe>
<post>diirt-users@lists.sourceforge.net</post>
</mailingList>
<mailingList>
<name>Developer discussion</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/diirt-devel</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/diirt-devel</unsubscribe>
<post>diirt-devel@lists.sourceforge.net</post>
</mailingList>
</mailingLists>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<dependencies>
<dependency>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
<configuration>
<retryFailedDeploymentCount>10</retryFailedDeploymentCount>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.4</version>
<configuration>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<showWarnings>true</showWarnings>
<source>1.7</source>
<target>1.7</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
<artifactId>maven-license-plugin</artifactId>
<version>1.9.0</version>
<configuration>
<header>header.txt</header>
<includes>
<include>src/**/*.java</include>
</includes>
<strictCheck>true</strictCheck>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>1.8.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit-dep</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.epics</groupId>
<artifactId>epics-util</artifactId>
<version>0.3.2</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<github.global.server>github.com</github.global.server>
</properties>
<modules>
<module>pvmanager-jca</module>
<module>pvmanager-sample</module>
<module>pvmanager-loc</module>
<module>pvmanager-test</module>
<module>pvmanager-sim</module>
<module>pvmanager-extra</module>
<module>pvmanager-graphene</module>
<module>pvmanager-vtype</module>
<module>pvmanager-core</module>
<module>epics-vtype</module>
<module>pvmanager-sys</module>
<module>pvmanager-timecache</module>
<module>pvmanager-file</module>
<module>pvmanager-jdbc</module>
<module>pvmanager-exec</module>
<module>pvmanager-pva</module>
<module>pvmanager-integration</module>
<module>vtype-json</module>
<module>pvmanager-file-json</module>
</modules>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<docfilessubdirs>true</docfilessubdirs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.4</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<reports>
<report>changes-report</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>
</project>