Skip to content

Commit 6635c29

Browse files
authored
Merge pull request #18 from epics-base/Issue_15
Issue 15
2 parents f801496 + dd1933e commit 6635c29

12 files changed

Lines changed: 1025 additions & 363 deletions

File tree

epics-util/pom.xml

Lines changed: 83 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
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-
<version>1.0.0-SNAPSHOT</version>
5-
<groupId>org.epics</groupId>
6-
<artifactId>epics-util</artifactId>
7-
<name>org.epics.util</name>
8-
<description>Basic Java utility classes to be shared across projects until
9-
suitable replacements are available in the JDK.</description>
10-
<properties>
11-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
</properties>
13-
<build>
14-
<plugins>
15-
<plugin>
16-
<groupId>org.apache.maven.plugins</groupId>
17-
<artifactId>maven-compiler-plugin</artifactId>
18-
<version>3.6.2</version>
19-
<configuration>
20-
<source>1.8</source>
21-
<target>1.8</target>
22-
</configuration>
23-
</plugin>
24-
<plugin>
25-
<groupId>org.apache.maven.plugins</groupId>
26-
<artifactId>maven-source-plugin</artifactId>
27-
<version>3.0.1</version>
28-
<executions>
29-
<execution>
30-
<id>attach-sources</id>
31-
<goals>
32-
<goal>jar</goal>
33-
</goals>
34-
</execution>
35-
</executions>
36-
</plugin>
37-
<plugin>
38-
<groupId>org.apache.maven.plugins</groupId>
39-
<artifactId>maven-javadoc-plugin</artifactId>
40-
<version>2.10.4</version>
41-
<executions>
42-
<execution>
43-
<id>attach-javadocs</id>
44-
<goals>
45-
<goal>jar</goal>
46-
</goals>
47-
</execution>
48-
</executions>
49-
</plugin>
50-
<plugin>
51-
<groupId>com.mycila</groupId>
52-
<artifactId>license-maven-plugin</artifactId>
53-
<version>3.0</version>
54-
<configuration>
55-
<header>HEADER.TXT</header>
56-
<includes>
57-
<include>**/*.java</include>
58-
</includes>
59-
</configuration>
60-
</plugin>
61-
</plugins>
62-
</build>
63-
<dependencies>
64-
<dependency>
65-
<groupId>junit</groupId>
66-
<artifactId>junit</artifactId>
67-
<version>4.12</version>
68-
<scope>test</scope>
69-
</dependency>
70-
<dependency>
71-
<groupId>org.mockito</groupId>
72-
<artifactId>mockito-all</artifactId>
73-
<version>1.10.19</version>
74-
<scope>test</scope>
75-
</dependency>
76-
<dependency>
77-
<groupId>org.hamcrest</groupId>
78-
<artifactId>hamcrest-all</artifactId>
79-
<version>1.3</version>
80-
<scope>test</scope>
81-
</dependency>
82-
</dependencies>
83-
</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+
<version>1.0.0-SNAPSHOT</version>
5+
<artifactId>epics-util</artifactId>
6+
<name>org.epics.util</name>
7+
<description>Basic Java utility classes to be shared across projects until
8+
suitable replacements are available in the JDK.</description>
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
</properties>
12+
<build>
13+
<plugins>
14+
<plugin>
15+
<groupId>org.apache.maven.plugins</groupId>
16+
<artifactId>maven-compiler-plugin</artifactId>
17+
<version>3.6.2</version>
18+
<configuration>
19+
<source>1.8</source>
20+
<target>1.8</target>
21+
</configuration>
22+
</plugin>
23+
<plugin>
24+
<groupId>org.apache.maven.plugins</groupId>
25+
<artifactId>maven-source-plugin</artifactId>
26+
<version>3.0.1</version>
27+
<executions>
28+
<execution>
29+
<id>attach-sources</id>
30+
<goals>
31+
<goal>jar</goal>
32+
</goals>
33+
</execution>
34+
</executions>
35+
</plugin>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-javadoc-plugin</artifactId>
39+
<version>2.10.4</version>
40+
<executions>
41+
<execution>
42+
<id>attach-javadocs</id>
43+
<goals>
44+
<goal>jar</goal>
45+
</goals>
46+
</execution>
47+
</executions>
48+
</plugin>
49+
<plugin>
50+
<groupId>com.mycila</groupId>
51+
<artifactId>license-maven-plugin</artifactId>
52+
<version>3.0</version>
53+
<configuration>
54+
<header>HEADER.TXT</header>
55+
<includes>
56+
<include>**/*.java</include>
57+
</includes>
58+
</configuration>
59+
</plugin>
60+
</plugins>
61+
</build>
62+
<dependencies>
63+
<dependency>
64+
<groupId>junit</groupId>
65+
<artifactId>junit</artifactId>
66+
<version>4.12</version>
67+
<scope>test</scope>
68+
</dependency>
69+
<dependency>
70+
<groupId>org.mockito</groupId>
71+
<artifactId>mockito-all</artifactId>
72+
<version>1.10.19</version>
73+
<scope>test</scope>
74+
</dependency>
75+
<dependency>
76+
<groupId>org.hamcrest</groupId>
77+
<artifactId>hamcrest-all</artifactId>
78+
<version>1.3</version>
79+
<scope>test</scope>
80+
</dependency>
81+
</dependencies>
82+
<groupId>org.epics</groupId>
83+
</project>

epics-vtype/pom.xml

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
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>epics-vtype-all</artifactId>
6-
<name>epics-vtype</name>
7-
<version>1.0.0-SNAPSHOT</version>
8-
<packaging>pom</packaging>
9-
<description>A set of standard types for value processing.</description>
10-
<properties>
11-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12-
</properties>
13-
<modules>
14-
<module>vtype</module>
15-
<module>vtype-json</module>
16-
</modules>
17-
<build>
18-
<plugins>
19-
<plugin>
20-
<groupId>org.apache.maven.plugins</groupId>
21-
<artifactId>maven-compiler-plugin</artifactId>
22-
<version>3.6.2</version>
23-
<configuration>
24-
<source>1.8</source>
25-
<target>1.8</target>
26-
</configuration>
27-
</plugin>
28-
<plugin>
29-
<groupId>org.apache.maven.plugins</groupId>
30-
<artifactId>maven-source-plugin</artifactId>
31-
<version>3.0.1</version>
32-
<executions>
33-
<execution>
34-
<id>attach-sources</id>
35-
<goals>
36-
<goal>jar</goal>
37-
</goals>
38-
</execution>
39-
</executions>
40-
</plugin>
41-
<plugin>
42-
<groupId>org.apache.maven.plugins</groupId>
43-
<artifactId>maven-javadoc-plugin</artifactId>
44-
<version>2.10.4</version>
45-
<executions>
46-
<execution>
47-
<id>attach-javadocs</id>
48-
<goals>
49-
<goal>jar</goal>
50-
</goals>
51-
</execution>
52-
</executions>
53-
</plugin>
54-
<plugin>
55-
<groupId>com.mycila</groupId>
56-
<artifactId>license-maven-plugin</artifactId>
57-
<version>3.0</version>
58-
<configuration>
59-
<header>HEADER.TXT</header>
60-
<includes>
61-
<include>**/*.java</include>
62-
</includes>
63-
</configuration>
64-
</plugin>
65-
</plugins>
66-
</build>
67-
<dependencies>
68-
<dependency>
69-
<groupId>${project.groupId}</groupId>
70-
<artifactId>epics-util</artifactId>
71-
<version>${project.version}</version>
72-
</dependency>
73-
<dependency>
74-
<groupId>junit</groupId>
75-
<artifactId>junit</artifactId>
76-
<version>4.12</version>
77-
<scope>test</scope>
78-
</dependency>
79-
<dependency>
80-
<groupId>org.mockito</groupId>
81-
<artifactId>mockito-all</artifactId>
82-
<version>1.10.19</version>
83-
<scope>test</scope>
84-
</dependency>
85-
<dependency>
86-
<groupId>org.hamcrest</groupId>
87-
<artifactId>hamcrest-all</artifactId>
88-
<version>1.3</version>
89-
<scope>test</scope>
90-
</dependency>
91-
</dependencies>
92-
</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+
<artifactId>epics-vtype-all</artifactId>
5+
<name>epics-vtype</name>
6+
<version>1.0.0-SNAPSHOT</version>
7+
<packaging>pom</packaging>
8+
<description>A set of standard types for value processing.</description>
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
</properties>
12+
<modules>
13+
<module>vtype</module>
14+
<module>vtype-json</module>
15+
</modules>
16+
<build>
17+
<plugins>
18+
<plugin>
19+
<groupId>org.apache.maven.plugins</groupId>
20+
<artifactId>maven-compiler-plugin</artifactId>
21+
<version>3.6.2</version>
22+
<configuration>
23+
<source>1.8</source>
24+
<target>1.8</target>
25+
</configuration>
26+
</plugin>
27+
<plugin>
28+
<groupId>org.apache.maven.plugins</groupId>
29+
<artifactId>maven-source-plugin</artifactId>
30+
<version>3.0.1</version>
31+
<executions>
32+
<execution>
33+
<id>attach-sources</id>
34+
<goals>
35+
<goal>jar</goal>
36+
</goals>
37+
</execution>
38+
</executions>
39+
</plugin>
40+
<plugin>
41+
<groupId>org.apache.maven.plugins</groupId>
42+
<artifactId>maven-javadoc-plugin</artifactId>
43+
<version>2.10.4</version>
44+
<executions>
45+
<execution>
46+
<id>attach-javadocs</id>
47+
<goals>
48+
<goal>jar</goal>
49+
</goals>
50+
</execution>
51+
</executions>
52+
</plugin>
53+
<plugin>
54+
<groupId>com.mycila</groupId>
55+
<artifactId>license-maven-plugin</artifactId>
56+
<version>3.0</version>
57+
<configuration>
58+
<header>HEADER.TXT</header>
59+
<includes>
60+
<include>**/*.java</include>
61+
</includes>
62+
</configuration>
63+
</plugin>
64+
</plugins>
65+
</build>
66+
<dependencies>
67+
<dependency>
68+
<groupId>${project.groupId}</groupId>
69+
<artifactId>epics-util</artifactId>
70+
<version>${project.version}</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>junit</groupId>
74+
<artifactId>junit</artifactId>
75+
<version>4.12</version>
76+
<scope>test</scope>
77+
</dependency>
78+
<dependency>
79+
<groupId>org.mockito</groupId>
80+
<artifactId>mockito-all</artifactId>
81+
<version>1.10.19</version>
82+
<scope>test</scope>
83+
</dependency>
84+
<dependency>
85+
<groupId>org.hamcrest</groupId>
86+
<artifactId>hamcrest-all</artifactId>
87+
<version>1.3</version>
88+
<scope>test</scope>
89+
</dependency>
90+
</dependencies>
91+
<groupId>org.epics</groupId>
92+
</project>

0 commit comments

Comments
 (0)