Skip to content

Commit 193b816

Browse files
author
Tim Harper
authored
Prepare for 1.2.x (#77)
* Bump to snapshot * Rename the packages to the org
1 parent 97e7f1f commit 193b816

File tree

203 files changed

+724
-714
lines changed

Some content is hidden

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

203 files changed

+724
-714
lines changed

pom.xml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<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">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>com.beowulfe.hap</groupId>
4+
<groupId>io.github.hap-java</groupId>
55
<artifactId>hap</artifactId>
66
<name>hap-java</name>
77
<description>Homekit Accessory Protocol for Java</description>
8-
<version>1.1.5</version>
8+
<version>1.2.0-snapshot</version>
99
<packaging>jar</packaging>
10-
<url>http://www.github.com/beowulfe/HAP-Java</url>
10+
<url>https://github.com/hap-java/HAP-Java</url>
1111

1212
<properties>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -22,9 +22,9 @@
2222
</licenses>
2323

2424
<scm>
25-
<connection>scm:git:https://github.com/beowulfe/HAP-Java.git</connection>
26-
<developerConnection>scm:git:[email protected]:beowulfe/HAP-Java.git</developerConnection>
27-
<url>https://github.com/beowulfe/HAP-Java.git</url>
25+
<connection>scm:git:https://github.com/hap-java/HAP-Java.git</connection>
26+
<developerConnection>scm:git:[email protected]:hap-java/HAP-Java.git</developerConnection>
27+
<url>https://github.com/hap-java/HAP-Java.git</url>
2828
<tag>HEAD</tag>
2929
</scm>
3030

@@ -34,6 +34,16 @@
3434
<email>[email protected]</email>
3535
<url>https://github.com/beowulfe</url>
3636
</developer>
37+
<developer>
38+
<name>Cody Cutrer</name>
39+
<email>[email protected]</email>
40+
<url>https://github.com/ccutrer</url>
41+
</developer>
42+
<developer>
43+
<name>Tim Harper</name>
44+
<email>[email protected]</email>
45+
<url>https://github.com/timcharper</url>
46+
</developer>
3747
</developers>
3848

3949
<dependencies>
@@ -155,7 +165,7 @@
155165
<artifactId>maven-javadoc-plugin</artifactId>
156166
<version>3.0.1</version>
157167
<configuration>
158-
<excludePackageNames>com.beowulfe.hap.impl</excludePackageNames>
168+
<excludePackageNames>io.github.hapjava.impl</excludePackageNames>
159169
</configuration>
160170
<executions>
161171
<execution>
@@ -196,7 +206,7 @@
196206
<goal>publish-scm</goal>
197207
</goals>
198208
<configuration>
199-
<pubScmUrl>scm:git:[email protected]:beowulfe/HAP-Java.git</pubScmUrl>
209+
<pubScmUrl>scm:git:[email protected]:hap-java/HAP-Java.git</pubScmUrl>
200210
<scmBranch>gh-pages</scmBranch>
201211
</configuration>
202212
</execution>
@@ -238,7 +248,7 @@
238248
<distributionManagement>
239249
<site>
240250
<id>website</id>
241-
<url>https://github.com/beowulfe/hap-java</url>
251+
<url>https://hap-java.github.io/</url>
242252
</site>
243253
<repository>
244254
<id>ossrh</id>
@@ -262,7 +272,7 @@
262272
<artifactId>maven-javadoc-plugin</artifactId>
263273
<version>3.0.1</version>
264274
<configuration>
265-
<excludePackageNames>com.beowulfe.hap.impl</excludePackageNames>
275+
<excludePackageNames>io.github.hapjava.impl</excludePackageNames>
266276
</configuration>
267277
<reportSets>
268278
<reportSet>

src/main/java/com/beowulfe/hap/accessories/properties/package-info.java

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/main/java/com/beowulfe/hap/HomekitAccessory.java renamed to src/main/java/io/github/hapjava/HomekitAccessory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

33
import java.util.Collection;
44

55
/**
66
* Base interface for all Homekit Accessories. You can implement this interface directly, but most
77
* users will prefer to use the more full featured interfaces in {@link
8-
* com.beowulfe.hap.accessories} which include a default implementation of {@link #getServices()}.
8+
* io.github.hapjava.accessories} which include a default implementation of {@link #getServices()}.
99
*
1010
* @author Andy Lintner
1111
*/
@@ -61,7 +61,7 @@ public interface HomekitAccessory {
6161
*
6262
* <p>This method will only be useful if you're implementing your own accessory type. For the
6363
* standard accessories, use the default implementation provided by the interfaces in {@link
64-
* com.beowulfe.hap.accessories}.
64+
* io.github.hapjava.accessories}.
6565
*
6666
* @return the collection of services.
6767
*/

src/main/java/com/beowulfe/hap/HomekitAuthInfo.java renamed to src/main/java/io/github/hapjava/HomekitAuthInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

33
import java.math.BigInteger;
44

src/main/java/com/beowulfe/hap/HomekitCharacteristicChangeCallback.java renamed to src/main/java/io/github/hapjava/HomekitCharacteristicChangeCallback.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

3-
import com.beowulfe.hap.characteristics.EventableCharacteristic;
3+
import io.github.hapjava.characteristics.EventableCharacteristic;
44

55
/**
66
* A callback interface for notifying subscribers that a characteristic value has changed.

src/main/java/com/beowulfe/hap/HomekitRoot.java renamed to src/main/java/io/github/hapjava/HomekitRoot.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

3-
import com.beowulfe.hap.impl.HomekitRegistry;
4-
import com.beowulfe.hap.impl.HomekitWebHandler;
5-
import com.beowulfe.hap.impl.accessories.Bridge;
6-
import com.beowulfe.hap.impl.connections.HomekitClientConnectionFactoryImpl;
7-
import com.beowulfe.hap.impl.connections.SubscriptionManager;
8-
import com.beowulfe.hap.impl.jmdns.JmdnsHomekitAdvertiser;
3+
import io.github.hapjava.impl.HomekitRegistry;
4+
import io.github.hapjava.impl.HomekitWebHandler;
5+
import io.github.hapjava.impl.accessories.Bridge;
6+
import io.github.hapjava.impl.connections.HomekitClientConnectionFactoryImpl;
7+
import io.github.hapjava.impl.connections.SubscriptionManager;
8+
import io.github.hapjava.impl.jmdns.JmdnsHomekitAdvertiser;
99
import java.io.IOException;
1010
import java.net.InetAddress;
1111
import org.slf4j.Logger;

src/main/java/com/beowulfe/hap/HomekitServer.java renamed to src/main/java/io/github/hapjava/HomekitServer.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

3-
import com.beowulfe.hap.impl.HomekitBridge;
4-
import com.beowulfe.hap.impl.HomekitUtils;
5-
import com.beowulfe.hap.impl.http.impl.HomekitHttpServer;
3+
import io.github.hapjava.impl.HomekitBridge;
4+
import io.github.hapjava.impl.HomekitUtils;
5+
import io.github.hapjava.impl.http.impl.HomekitHttpServer;
66
import java.io.IOException;
77
import java.math.BigInteger;
88
import java.net.InetAddress;
@@ -75,7 +75,7 @@ public void stop() {
7575
* @param authInfo authentication information for this accessory. These values should be persisted
7676
* and re-supplied on re-start of your application.
7777
* @param accessory accessory implementation. This will usually be an implementation of an
78-
* interface in {#link com.beowulfe.hap.accessories com.beowulfe.hap.accessories}.
78+
* interface in {#link io.github.hapjava.accessories io.github.hapjava.accessories}.
7979
* @return the newly created server. Call {@link HomekitStandaloneAccessoryServer#start start} on
8080
* this to begin.
8181
* @throws IOException when mDNS cannot connect to the network

src/main/java/com/beowulfe/hap/HomekitStandaloneAccessoryServer.java renamed to src/main/java/io/github/hapjava/HomekitStandaloneAccessoryServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

3-
import com.beowulfe.hap.impl.HomekitWebHandler;
3+
import io.github.hapjava.impl.HomekitWebHandler;
44
import java.io.IOException;
55
import java.net.InetAddress;
66
import java.net.UnknownHostException;

src/main/java/com/beowulfe/hap/Service.java renamed to src/main/java/io/github/hapjava/Service.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package com.beowulfe.hap;
1+
package io.github.hapjava;
22

3-
import com.beowulfe.hap.characteristics.Characteristic;
3+
import io.github.hapjava.characteristics.Characteristic;
44
import java.util.List;
55

66
/**

src/main/java/com/beowulfe/hap/accessories/BasicWindowCovering.java renamed to src/main/java/io/github/hapjava/accessories/BasicWindowCovering.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.beowulfe.hap.accessories;
1+
package io.github.hapjava.accessories;
22

3-
import com.beowulfe.hap.HomekitAccessory;
4-
import com.beowulfe.hap.HomekitCharacteristicChangeCallback;
5-
import com.beowulfe.hap.Service;
6-
import com.beowulfe.hap.accessories.properties.WindowCoveringPositionState;
7-
import com.beowulfe.hap.impl.services.WindowCoveringService;
3+
import io.github.hapjava.HomekitAccessory;
4+
import io.github.hapjava.HomekitCharacteristicChangeCallback;
5+
import io.github.hapjava.Service;
6+
import io.github.hapjava.accessories.properties.WindowCoveringPositionState;
7+
import io.github.hapjava.impl.services.WindowCoveringService;
88
import java.util.Collection;
99
import java.util.Collections;
1010
import java.util.concurrent.CompletableFuture;

0 commit comments

Comments
 (0)