Skip to content

Commit b685ae0

Browse files
committed
#23 including the ca datasource into the gpclient parent pom
1 parent 12349a5 commit b685ae0

1 file changed

Lines changed: 114 additions & 113 deletions

File tree

gpclient/pom.xml

Lines changed: 114 additions & 113 deletions
Original file line numberDiff line numberDiff line change
@@ -1,113 +1,114 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<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">
3-
<modelVersion>4.0.0</modelVersion>
4-
<groupId>org.epics</groupId>
5-
<artifactId>gpclient</artifactId>
6-
<name>gpclient</name>
7-
<version>1.0.0-SNAPSHOT</version>
8-
<packaging>pom</packaging>
9-
<description>The generic purpose JAVA EPICS client.</description>
10-
<properties>
11-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
</properties>
13-
<modules>
14-
<module>gpclient-core</module>
15-
<module>gpclient-sim</module>
16-
<module>gpclient-sample</module>
17-
<module>gpclient-pva</module>
18-
<module>gpclient-javafx</module>
19-
<module>gpclient-loc</module>
20-
</modules>
21-
<build>
22-
<plugins>
23-
<plugin>
24-
<groupId>org.apache.maven.plugins</groupId>
25-
<artifactId>maven-compiler-plugin</artifactId>
26-
<version>3.6.2</version>
27-
<configuration>
28-
<source>1.8</source>
29-
<target>1.8</target>
30-
</configuration>
31-
</plugin>
32-
<plugin>
33-
<groupId>org.apache.maven.plugins</groupId>
34-
<artifactId>maven-source-plugin</artifactId>
35-
<version>3.0.1</version>
36-
<executions>
37-
<execution>
38-
<id>attach-sources</id>
39-
<goals>
40-
<goal>jar</goal>
41-
</goals>
42-
</execution>
43-
</executions>
44-
</plugin>
45-
<plugin>
46-
<groupId>org.apache.maven.plugins</groupId>
47-
<artifactId>maven-javadoc-plugin</artifactId>
48-
<version>2.10.4</version>
49-
<executions>
50-
<execution>
51-
<id>attach-javadocs</id>
52-
<goals>
53-
<goal>jar</goal>
54-
</goals>
55-
</execution>
56-
</executions>
57-
</plugin>
58-
<plugin>
59-
<groupId>com.mycila</groupId>
60-
<artifactId>license-maven-plugin</artifactId>
61-
<version>3.0</version>
62-
<configuration>
63-
<header>HEADER.TXT</header>
64-
<includes>
65-
<include>**/*.java</include>
66-
</includes>
67-
</configuration>
68-
</plugin>
69-
</plugins>
70-
</build>
71-
<reporting>
72-
<plugins>
73-
<plugin>
74-
<groupId>org.apache.maven.plugins</groupId>
75-
<artifactId>maven-javadoc-plugin</artifactId>
76-
<version>3.0.0</version>
77-
<reportSets>
78-
<reportSet>
79-
<id>aggregate</id>
80-
<reports>
81-
<report>aggregate</report>
82-
</reports>
83-
</reportSet>
84-
</reportSets>
85-
</plugin>
86-
</plugins>
87-
</reporting>
88-
<dependencies>
89-
<dependency>
90-
<groupId>${project.groupId}</groupId>
91-
<artifactId>epics-util</artifactId>
92-
<version>${project.version}</version>
93-
</dependency>
94-
<dependency>
95-
<groupId>junit</groupId>
96-
<artifactId>junit</artifactId>
97-
<version>4.12</version>
98-
<scope>test</scope>
99-
</dependency>
100-
<dependency>
101-
<groupId>org.mockito</groupId>
102-
<artifactId>mockito-core</artifactId>
103-
<version>2.13.0</version>
104-
<scope>test</scope>
105-
</dependency>
106-
<dependency>
107-
<groupId>org.hamcrest</groupId>
108-
<artifactId>hamcrest-all</artifactId>
109-
<version>1.3</version>
110-
<scope>test</scope>
111-
</dependency>
112-
</dependencies>
113-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>org.epics</groupId>
5+
<artifactId>gpclient</artifactId>
6+
<name>gpclient</name>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<packaging>pom</packaging>
9+
<description>The generic purpose JAVA EPICS client.</description>
10+
<properties>
11+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12+
</properties>
13+
<modules>
14+
<module>gpclient-core</module>
15+
<module>gpclient-sim</module>
16+
<module>gpclient-ca</module>
17+
<module>gpclient-pva</module>
18+
<module>gpclient-javafx</module>
19+
<module>gpclient-loc</module>
20+
<module>gpclient-sample</module>
21+
</modules>
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-compiler-plugin</artifactId>
27+
<version>3.6.2</version>
28+
<configuration>
29+
<source>1.8</source>
30+
<target>1.8</target>
31+
</configuration>
32+
</plugin>
33+
<plugin>
34+
<groupId>org.apache.maven.plugins</groupId>
35+
<artifactId>maven-source-plugin</artifactId>
36+
<version>3.0.1</version>
37+
<executions>
38+
<execution>
39+
<id>attach-sources</id>
40+
<goals>
41+
<goal>jar</goal>
42+
</goals>
43+
</execution>
44+
</executions>
45+
</plugin>
46+
<plugin>
47+
<groupId>org.apache.maven.plugins</groupId>
48+
<artifactId>maven-javadoc-plugin</artifactId>
49+
<version>2.10.4</version>
50+
<executions>
51+
<execution>
52+
<id>attach-javadocs</id>
53+
<goals>
54+
<goal>jar</goal>
55+
</goals>
56+
</execution>
57+
</executions>
58+
</plugin>
59+
<plugin>
60+
<groupId>com.mycila</groupId>
61+
<artifactId>license-maven-plugin</artifactId>
62+
<version>3.0</version>
63+
<configuration>
64+
<header>HEADER.TXT</header>
65+
<includes>
66+
<include>**/*.java</include>
67+
</includes>
68+
</configuration>
69+
</plugin>
70+
</plugins>
71+
</build>
72+
<reporting>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-javadoc-plugin</artifactId>
77+
<version>3.0.0</version>
78+
<reportSets>
79+
<reportSet>
80+
<id>aggregate</id>
81+
<reports>
82+
<report>aggregate</report>
83+
</reports>
84+
</reportSet>
85+
</reportSets>
86+
</plugin>
87+
</plugins>
88+
</reporting>
89+
<dependencies>
90+
<dependency>
91+
<groupId>${project.groupId}</groupId>
92+
<artifactId>epics-util</artifactId>
93+
<version>${project.version}</version>
94+
</dependency>
95+
<dependency>
96+
<groupId>junit</groupId>
97+
<artifactId>junit</artifactId>
98+
<version>4.12</version>
99+
<scope>test</scope>
100+
</dependency>
101+
<dependency>
102+
<groupId>org.mockito</groupId>
103+
<artifactId>mockito-core</artifactId>
104+
<version>2.13.0</version>
105+
<scope>test</scope>
106+
</dependency>
107+
<dependency>
108+
<groupId>org.hamcrest</groupId>
109+
<artifactId>hamcrest-all</artifactId>
110+
<version>1.3</version>
111+
<scope>test</scope>
112+
</dependency>
113+
</dependencies>
114+
</project>

0 commit comments

Comments
 (0)