Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
Removed dependency to old serial port implementation and cloudbees re…
Browse files Browse the repository at this point in the history
…pository.
  • Loading branch information
tlaukkan committed May 30, 2016
1 parent b492871 commit f8b1ca4
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 168 deletions.
16 changes: 0 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@
</scm>

<repositories>
<repository>
<id>bubblecloud-cloudbees-release</id>
<name>bubblecloud-cloudbees-release</name>
<url>http://repository-bubblecloud.forge.cloudbees.com/release/</url>
</repository>
<repository>
<snapshots>
<enabled>false</enabled>
Expand Down Expand Up @@ -117,17 +112,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>3.3</version>
<configuration>
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
<plugin>
<groupId>org.eluder.coveralls</groupId>
Expand Down
6 changes: 0 additions & 6 deletions zigbee-serial-javase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
<type>test-jar</type>
</dependency>

<dependency>
<groupId>serial-comm</groupId>
<artifactId>serial-comm</artifactId>
<version>0.9</version>
</dependency>

<dependency>
<groupId>org.scream3r</groupId>
<artifactId>jssc</artifactId>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.bubblecloud.zigbee;

import org.bubblecloud.zigbee.network.port.ZigBeeSerialPortImpl;
import org.bubblecloud.zigbee.network.port.ZigBeeSerialPortJsscImpl;

/**
* Created by Chris on 25/02/15.
Expand All @@ -12,6 +12,6 @@ public final class ZigBeeSerialNetworkTest extends ZigBeeNetworkTest

public ZigBeeSerialNetworkTest()
{
super(new ZigBeeSerialPortImpl(SerialPortIdentifier, BaudRate));
super(new ZigBeeSerialPortJsscImpl(SerialPortIdentifier, BaudRate));
}
}

0 comments on commit f8b1ca4

Please sign in to comment.