Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,7 @@
<artifactId>parent</artifactId>
<version>0.68.0</version>
</parent>
<!--
@todo #11:10min Group id have to match repository path. I suggest
changing com.github.artemget to io.github.artemget. Changing directory structure
to io.github.artemget is required.
This link should help:
<a href="https://central.sonatype.org/publish/requirements/coordinates/">coordinates</a>
-->
<groupId>com.github.artemget</groupId>
<groupId>io.github.artemget</groupId>
<artifactId>teleroute</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand Down Expand Up @@ -90,6 +83,8 @@
</dependency>
</dependencies>
<build>
<sourceDirectory>src</sourceDirectory>
<testSourceDirectory>test</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.Send;
import io.github.artemget.teleroute.send.Send;
import java.util.Optional;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.Send;
import com.github.artemget.teleroute.send.SendBatch;
import io.github.artemget.teleroute.send.Send;
import io.github.artemget.teleroute.send.SendBatch;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import java.io.Serial;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.Send;
import io.github.artemget.teleroute.send.Send;
import java.util.Optional;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Command package.
*/
package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.update.Wrap;
import java.util.function.Predicate;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.update.Wrap;
import java.util.function.Predicate;
import java.util.regex.Pattern;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Match operators package.
*/
package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Main teleroute package.
*/
package com.github.artemget.teleroute;
package io.github.artemget.teleroute;
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;

import com.github.artemget.teleroute.command.Cmd;
import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.command.Cmd;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Optional;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;

import com.github.artemget.teleroute.command.Cmd;
import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.command.Cmd;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;

import com.github.artemget.teleroute.command.Cmd;
import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.command.Cmd;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Collection;
import java.util.Collections;
import java.util.Optional;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;

import com.github.artemget.teleroute.command.Cmd;
import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.command.Cmd;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Optional;
import java.util.function.Predicate;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;

import com.github.artemget.teleroute.command.Cmd;
import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.command.Cmd;
import io.github.artemget.teleroute.update.Wrap;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Route package.
*/
package com.github.artemget.teleroute.route;
package io.github.artemget.teleroute.route;
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.send;
package io.github.artemget.teleroute.send;

/**
* Sends messages via client.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.send;
package io.github.artemget.teleroute.send;

import java.util.Arrays;
import java.util.Collection;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.send;
package io.github.artemget.teleroute.send;

import java.io.Serial;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Send package.
*/
package com.github.artemget.teleroute.send;
package io.github.artemget.teleroute.send;
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.update;
package io.github.artemget.teleroute.update;

import java.util.Optional;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Update package.
*/
package com.github.artemget.teleroute.update;
package io.github.artemget.teleroute.update;
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.FkSend;
import io.github.artemget.teleroute.send.FkSend;
import org.hamcrest.MatcherAssert;
import org.junit.jupiter.api.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.FkSend;
import io.github.artemget.teleroute.send.FkSend;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.FkClient;
import com.github.artemget.teleroute.send.Send;
import io.github.artemget.teleroute.send.FkClient;
import io.github.artemget.teleroute.send.Send;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;

import com.github.artemget.teleroute.send.FkClient;
import com.github.artemget.teleroute.send.Send;
import io.github.artemget.teleroute.send.FkClient;
import io.github.artemget.teleroute.send.Send;
import java.util.Optional;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Command test package.
*/
package com.github.artemget.teleroute.command;
package io.github.artemget.teleroute.command;
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.Wrap;
import io.github.artemget.teleroute.update.Wrap;
import java.util.function.Predicate;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.FkWrap;
import io.github.artemget.teleroute.update.FkWrap;
import org.hamcrest.MatcherAssert;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.Test;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.FkWrap;
import io.github.artemget.teleroute.update.FkWrap;
import org.hamcrest.MatcherAssert;
import org.junit.jupiter.api.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.FkWrap;
import io.github.artemget.teleroute.update.FkWrap;
import org.hamcrest.MatcherAssert;
import org.junit.jupiter.api.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
* SOFTWARE.
*/

package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;

import com.github.artemget.teleroute.update.FkWrap;
import io.github.artemget.teleroute.update.FkWrap;
import java.util.regex.Pattern;
import org.hamcrest.MatcherAssert;
import org.junit.jupiter.api.Assertions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Match operators test package.
*/
package com.github.artemget.teleroute.match;
package io.github.artemget.teleroute.match;
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
/**
* Test package.
*/
package com.github.artemget.teleroute;
package io.github.artemget.teleroute;
Loading