<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>

    <parent>
        <groupId>org.epics</groupId>
        <artifactId>epics-parent</artifactId>
        <version>7.0.1</version>
    </parent>

    <artifactId>epics-pvdata</artifactId>
    <version>6.1.1</version>

    <name>pvDataJava</name>
    <url>https://github.com/epics-base/pvDataJava</url>

    <!-- Explicitly declare snapshot repository -->
    <repositories>
        <repository>
            <id>sonatype-nexus-snapshots</id>
            <name>OSS Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </repository>
    </repositories>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <!-- Use lower case for bundle name, as agreed upon with CS-Studio devs -->
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>org.epics.pvdata</Bundle-SymbolicName>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <scm>
    	<url>https://github.com/epics-base/pvDataJava</url>
    	<connection>scm:git:https://github.com/epics-base/pvDataJava</connection>
    	<developerConnection>scm:git:https://github.com/epics-base/pvDataJava</developerConnection>
        <tag>6.1.1</tag>
  </scm>
</project>
