Skip to content

Commit 036a429

Browse files
committed
Creating the jca based channel access datasource
1 parent 18ea2a3 commit 036a429

1 file changed

Lines changed: 46 additions & 0 deletions

File tree

gpclient/gpclient-ca/pom.xml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
<parent>
5+
<groupId>org.epics</groupId>
6+
<artifactId>gpclient</artifactId>
7+
<version>1.0.0-SNAPSHOT</version>
8+
</parent>
9+
<artifactId>gpclient-ca</artifactId>
10+
<packaging>jar</packaging>
11+
<name>org.epics.gpclient.ca</name>
12+
<description>Support for ChannelAccess data source for the EPICS Generic Purpose Client.</description>
13+
<dependencies>
14+
<dependency>
15+
<groupId>org.epics</groupId>
16+
<artifactId>jca</artifactId>
17+
<version>2.4.1</version>
18+
</dependency>
19+
<dependency>
20+
<groupId>${project.groupId}</groupId>
21+
<artifactId>gpclient-core</artifactId>
22+
<version>${project.version}</version>
23+
</dependency>
24+
</dependencies>
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<groupId>eu.somatik.serviceloader-maven-plugin</groupId>
29+
<artifactId>serviceloader-maven-plugin</artifactId>
30+
<version>1.0.4</version>
31+
<configuration>
32+
<services>
33+
<param>org.epics.gpclient.datasource.DataSourceProvider</param>
34+
</services>
35+
</configuration>
36+
<executions>
37+
<execution>
38+
<goals>
39+
<goal>generate</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
</plugins>
45+
</build>
46+
</project>

0 commit comments

Comments
 (0)