Skip to content

Commit 784b836

Browse files
committed
epics-vtype: javadoc and header update
1 parent 8c0eedc commit 784b836

110 files changed

Lines changed: 1930 additions & 1917 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

epics-vtype/HEADER.TXT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
2-
All rights reserved. Use is subject to license terms. See LICENSE.TXT
1+
Copyright information and license terms for this software can be
2+
found in the file LICENSE.TXT included with the distribution.

epics-vtype/pom.xml

Lines changed: 92 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +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-
</plugins>
55-
</build>
56-
<dependencies>
57-
<dependency>
58-
<groupId>${project.groupId}</groupId>
59-
<artifactId>epics-util</artifactId>
60-
<version>${project.version}</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>junit</groupId>
64-
<artifactId>junit</artifactId>
65-
<version>4.12</version>
66-
<scope>test</scope>
67-
</dependency>
68-
<dependency>
69-
<groupId>org.mockito</groupId>
70-
<artifactId>mockito-all</artifactId>
71-
<version>1.10.19</version>
72-
<scope>test</scope>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.hamcrest</groupId>
76-
<artifactId>hamcrest-all</artifactId>
77-
<version>1.3</version>
78-
<scope>test</scope>
79-
</dependency>
80-
</dependencies>
81-
</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>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>

epics-vtype/vtype-json/HEADER.TXT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
2-
All rights reserved. Use is subject to license terms. See LICENSE.TXT
1+
Copyright information and license terms for this software can be
2+
found in the file LICENSE.TXT included with the distribution.

epics-vtype/vtype-json/src/main/java/org/epics/vtype/json/JsonArrays.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
3-
* All rights reserved. Use is subject to license terms. See LICENSE.TXT
2+
* Copyright information and license terms for this software can be
3+
* found in the file LICENSE.TXT included with the distribution.
44
*/
55
package org.epics.vtype.json;
66

0 commit comments

Comments
 (0)