Skip to content

Commit 1b9613f

Browse files
committed
ADAP-70: new adapter 6.0.1.0 release
1 parent 8ca6ab7 commit 1b9613f

6 files changed

Lines changed: 170 additions & 170 deletions

RELEASENOTES-ADAPTER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Version 6.0.0.3.SNAPSHOT
1+
# Version 6.0.1.0
22
## New Features
33

44
* Support for launching Runtime from a remote manifest.

pom.xml

Lines changed: 160 additions & 160 deletions
Original file line numberDiff line numberDiff line change
@@ -1,160 +1,160 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0"
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5-
<modelVersion>4.0.0</modelVersion>
6-
7-
<groupId>co.openfin</groupId>
8-
<artifactId>openfin-desktop-java-example</artifactId>
9-
<version>6.0.0.3</version>
10-
<packaging>jar</packaging>
11-
12-
<name>openfin-desktop-java-example</name>
13-
<description>Examples of OpenFin Java API</description>
14-
<url>http://www.openfin.co</url>
15-
16-
<properties>
17-
<user.name>[email protected]</user.name>
18-
<maven.compiler.source>1.8</maven.compiler.source>
19-
<maven.compiler.target>1.8</maven.compiler.target>
20-
<skipTests>true</skipTests>
21-
</properties>
22-
23-
<licenses>
24-
<license>
25-
<name>The MIT License (MIT)</name>
26-
<url>http://www.opensource.org/licenses/mit-license.php</url>
27-
<distribution>repo</distribution>
28-
</license>
29-
</licenses>
30-
31-
<developers>
32-
<developer>
33-
<email>[email protected]</email>
34-
<name>OpenFin</name>
35-
<url>https://openfin.co</url>
36-
<id>openfin</id>
37-
</developer>
38-
</developers>
39-
40-
<scm>
41-
<connection>scm:hg:https://github.com/openfin/java-example.git</connection>
42-
<developerConnection>scm:hg:https://github.com/openfin/java-example.git</developerConnection>
43-
<url>https://github.com/openfin/java-example.git</url>
44-
</scm>
45-
46-
<dependencies>
47-
<dependency>
48-
<groupId>co.openfin</groupId>
49-
<artifactId>openfin-desktop-java-adapter</artifactId>
50-
<version>6.0.0.3-SNAPSHOT</version>
51-
</dependency>
52-
<dependency>
53-
<groupId>co.openfin</groupId>
54-
<artifactId>openfin-snap-dock</artifactId>
55-
<version>1.0.0.1</version>
56-
</dependency>
57-
<dependency>
58-
<groupId>tablelayout</groupId>
59-
<artifactId>TableLayout</artifactId>
60-
<version>20050920</version>
61-
</dependency>
62-
<dependency>
63-
<groupId>junit</groupId>
64-
<artifactId>junit</artifactId>
65-
<version>4.11</version>
66-
</dependency>
67-
<dependency>
68-
<groupId>org.hamcrest</groupId>
69-
<artifactId>hamcrest-core</artifactId>
70-
<version>1.3</version>
71-
</dependency>
72-
<dependency>
73-
<groupId>org.hamcrest</groupId>
74-
<artifactId>hamcrest-library</artifactId>
75-
<version>1.1</version>
76-
</dependency>
77-
<dependency>
78-
<groupId>org.mockito</groupId>
79-
<artifactId>mockito-core</artifactId>
80-
<version>1.9.5</version>
81-
</dependency>
82-
<dependency>
83-
<groupId>org.slf4j</groupId>
84-
<artifactId>slf4j-api</artifactId>
85-
<version>1.7.5</version>
86-
</dependency>
87-
<dependency>
88-
<groupId>org.slf4j</groupId>
89-
<artifactId>slf4j-jdk14</artifactId>
90-
<version>1.6.1</version>
91-
</dependency>
92-
<!-- to use log4j and comment out slf4j-jdk14
93-
<dependency>
94-
<groupId>org.slf4j</groupId>
95-
<artifactId>slf4j-log4j12</artifactId>
96-
<version>1.7.5</version>
97-
</dependency>
98-
<dependency>
99-
<groupId>log4j</groupId>
100-
<artifactId>log4j</artifactId>
101-
<version>1.2.17</version>
102-
</dependency>
103-
-->
104-
</dependencies>
105-
106-
<build>
107-
<plugins>
108-
<plugin>
109-
<!-- To combine all the dependencies into one jar: -->
110-
<!-- mvn assembly:assembly -DdescriptorId=jar-with-dependencies -->
111-
<!-- need to compile first since this plugin does NOT build the project -->
112-
<groupId>org.apache.maven.plugins</groupId>
113-
<artifactId>maven-assembly-plugin</artifactId>
114-
<configuration>
115-
<archive>
116-
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
117-
</archive>
118-
</configuration>
119-
</plugin>
120-
<plugin>
121-
<groupId>org.apache.maven.plugins</groupId>
122-
<artifactId>maven-jar-plugin</artifactId>
123-
<version>2.5</version>
124-
<configuration>
125-
<archive>
126-
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
127-
</archive>
128-
</configuration>
129-
<executions>
130-
<execution>
131-
<goals>
132-
<goal>test-jar</goal>
133-
</goals>
134-
</execution>
135-
</executions>
136-
</plugin>
137-
138-
<!-- To run all tests: -->
139-
<!-- mvn -DskipTests=false -Dtest=AllTests test -->
140-
<plugin>
141-
<groupId>org.apache.maven.plugins</groupId>
142-
<artifactId>maven-surefire-plugin</artifactId>
143-
<version>2.19.1</version>
144-
<configuration>
145-
<skipTests>${skipTests}</skipTests>
146-
</configuration>
147-
</plugin>
148-
149-
</plugins>
150-
151-
<resources>
152-
<resource>
153-
<directory>src/main/resources</directory>
154-
<filtering>true</filtering>
155-
</resource>
156-
</resources>
157-
158-
</build>
159-
160-
</project>
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>co.openfin</groupId>
8+
<artifactId>openfin-desktop-java-example</artifactId>
9+
<version>6.0.0.3</version>
10+
<packaging>jar</packaging>
11+
12+
<name>openfin-desktop-java-example</name>
13+
<description>Examples of OpenFin Java API</description>
14+
<url>http://www.openfin.co</url>
15+
16+
<properties>
17+
<user.name>[email protected]</user.name>
18+
<maven.compiler.source>1.8</maven.compiler.source>
19+
<maven.compiler.target>1.8</maven.compiler.target>
20+
<skipTests>true</skipTests>
21+
</properties>
22+
23+
<licenses>
24+
<license>
25+
<name>The MIT License (MIT)</name>
26+
<url>http://www.opensource.org/licenses/mit-license.php</url>
27+
<distribution>repo</distribution>
28+
</license>
29+
</licenses>
30+
31+
<developers>
32+
<developer>
33+
<email>[email protected]</email>
34+
<name>OpenFin</name>
35+
<url>https://openfin.co</url>
36+
<id>openfin</id>
37+
</developer>
38+
</developers>
39+
40+
<scm>
41+
<connection>scm:hg:https://github.com/openfin/java-example.git</connection>
42+
<developerConnection>scm:hg:https://github.com/openfin/java-example.git</developerConnection>
43+
<url>https://github.com/openfin/java-example.git</url>
44+
</scm>
45+
46+
<dependencies>
47+
<dependency>
48+
<groupId>co.openfin</groupId>
49+
<artifactId>openfin-desktop-java-adapter</artifactId>
50+
<version>6.0.1.0</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>co.openfin</groupId>
54+
<artifactId>openfin-snap-dock</artifactId>
55+
<version>1.0.0.1</version>
56+
</dependency>
57+
<dependency>
58+
<groupId>tablelayout</groupId>
59+
<artifactId>TableLayout</artifactId>
60+
<version>20050920</version>
61+
</dependency>
62+
<dependency>
63+
<groupId>junit</groupId>
64+
<artifactId>junit</artifactId>
65+
<version>4.11</version>
66+
</dependency>
67+
<dependency>
68+
<groupId>org.hamcrest</groupId>
69+
<artifactId>hamcrest-core</artifactId>
70+
<version>1.3</version>
71+
</dependency>
72+
<dependency>
73+
<groupId>org.hamcrest</groupId>
74+
<artifactId>hamcrest-library</artifactId>
75+
<version>1.1</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.mockito</groupId>
79+
<artifactId>mockito-core</artifactId>
80+
<version>1.9.5</version>
81+
</dependency>
82+
<dependency>
83+
<groupId>org.slf4j</groupId>
84+
<artifactId>slf4j-api</artifactId>
85+
<version>1.7.5</version>
86+
</dependency>
87+
<dependency>
88+
<groupId>org.slf4j</groupId>
89+
<artifactId>slf4j-jdk14</artifactId>
90+
<version>1.6.1</version>
91+
</dependency>
92+
<!-- to use log4j and comment out slf4j-jdk14
93+
<dependency>
94+
<groupId>org.slf4j</groupId>
95+
<artifactId>slf4j-log4j12</artifactId>
96+
<version>1.7.5</version>
97+
</dependency>
98+
<dependency>
99+
<groupId>log4j</groupId>
100+
<artifactId>log4j</artifactId>
101+
<version>1.2.17</version>
102+
</dependency>
103+
-->
104+
</dependencies>
105+
106+
<build>
107+
<plugins>
108+
<plugin>
109+
<!-- To combine all the dependencies into one jar: -->
110+
<!-- mvn assembly:assembly -DdescriptorId=jar-with-dependencies -->
111+
<!-- need to compile first since this plugin does NOT build the project -->
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-assembly-plugin</artifactId>
114+
<configuration>
115+
<archive>
116+
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
117+
</archive>
118+
</configuration>
119+
</plugin>
120+
<plugin>
121+
<groupId>org.apache.maven.plugins</groupId>
122+
<artifactId>maven-jar-plugin</artifactId>
123+
<version>2.5</version>
124+
<configuration>
125+
<archive>
126+
<manifestFile>${basedir}/target/classes/META-INF/MANIFEST.MF</manifestFile>
127+
</archive>
128+
</configuration>
129+
<executions>
130+
<execution>
131+
<goals>
132+
<goal>test-jar</goal>
133+
</goals>
134+
</execution>
135+
</executions>
136+
</plugin>
137+
138+
<!-- To run all tests: -->
139+
<!-- mvn -DskipTests=false -Dtest=AllTests test -->
140+
<plugin>
141+
<groupId>org.apache.maven.plugins</groupId>
142+
<artifactId>maven-surefire-plugin</artifactId>
143+
<version>2.19.1</version>
144+
<configuration>
145+
<skipTests>${skipTests}</skipTests>
146+
</configuration>
147+
</plugin>
148+
149+
</plugins>
150+
151+
<resources>
152+
<resource>
153+
<directory>src/main/resources</directory>
154+
<filtering>true</filtering>
155+
</resource>
156+
</resources>
157+
158+
</build>
159+
160+
</project>

release/junit.bat

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
REM usage: junit.bat runtime_version
2-
REM version defaults to stable
3-
if "%1" == "" (
4-
set RuntimeVersion="stable"
5-
) else (
6-
set RuntimeVersion="%1"
7-
)
8-
9-
java -cp openfin-desktop-java-example-6.0.0.1-tests.jar;openfin-desktop-java-adapter-6.0.0.2.jar;TableLayout-20050920.jar;jna-4.1.0.jar;jna-platform-4.1.0.jar;json-20140107.jar;slf4j-api-1.7.5.jar;slf4j-jdk14-1.6.1.jar;junit-4.11.jar;hamcrest-core-1.3.jar;hamcrest-core-1.3.jar;hamcrest-library-1.1.jar;mockito-core-1.9.5.jar;websocket-api-9.3.12.v20160915.jar;websocket-client-9.3.12.v20160915.jar;websocket-common-9.3.12.v20160915.jar;jetty-io-9.3.12.v20160915.jar;jetty-util-9.3.12.v20160915.jar -Djava.util.logging.config.file=logging.properties -Dcom.openfin.test.runtime.version=%RuntimeVersion% org.junit.runner.JUnitCore com.openfin.desktop.AllTests
1+
REM usage: junit.bat runtime_version
2+
REM version defaults to stable
3+
if "%1" == "" (
4+
set RuntimeVersion="stable"
5+
) else (
6+
set RuntimeVersion="%1"
7+
)
8+
9+
java -cp openfin-desktop-java-example-6.0.0.3-tests.jar;openfin-desktop-java-adapter-6.0.1.0.jar;TableLayout-20050920.jar;jna-4.1.0.jar;jna-platform-4.1.0.jar;json-20140107.jar;slf4j-api-1.7.5.jar;slf4j-jdk14-1.6.1.jar;junit-4.11.jar;hamcrest-core-1.3.jar;hamcrest-core-1.3.jar;hamcrest-library-1.1.jar;mockito-core-1.9.5.jar;websocket-api-9.3.12.v20160915.jar;websocket-client-9.3.12.v20160915.jar;websocket-common-9.3.12.v20160915.jar;jetty-io-9.3.12.v20160915.jar;jetty-util-9.3.12.v20160915.jar -Djava.util.logging.config.file=logging.properties -Dcom.openfin.test.runtime.version=%RuntimeVersion% org.junit.runner.JUnitCore com.openfin.desktop.AllTests
310 KB
Binary file not shown.
1.29 KB
Binary file not shown.
25 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)