-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpom.xml
More file actions
58 lines (53 loc) · 2.05 KB
/
pom.xml
File metadata and controls
58 lines (53 loc) · 2.05 KB
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
<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.11-SNAPSHOT</version>
</parent>
<artifactId>epics-pvdata</artifactId>
<version>6.1.10-SNAPSHOT</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>https://github.com/epics-base/pvDataJava</connection>
<developerConnection>https://github.com/epics-base/pvDataJava</developerConnection>
<tag>7.0.7</tag>
</scm>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>epics-util</artifactId>
<version>1.0.8-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>1.3</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>