Skip to content

Commit

Permalink
Move usage data collector classes from kernel to udc module
Browse files Browse the repository at this point in the history
  • Loading branch information
andreikoval committed Sep 4, 2018
1 parent bb0fecf commit df362b8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions community/bolt/pom.xml
Expand Up @@ -60,6 +60,11 @@
<artifactId>neo4j-kernel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-udc</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.neo4j</groupId>
Expand Down
Expand Up @@ -21,10 +21,10 @@

import java.util.concurrent.ConcurrentHashMap;

import org.neo4j.kernel.lifecycle.LifecycleAdapter;
import org.neo4j.scheduler.Group;
import org.neo4j.scheduler.JobHandle;
import org.neo4j.scheduler.JobScheduler;
import org.neo4j.kernel.lifecycle.LifecycleAdapter;

import static java.util.concurrent.TimeUnit.DAYS;

Expand Down
Expand Up @@ -17,13 +17,11 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.neo4j.sysinfo;
package org.neo4j.udc;

import org.junit.jupiter.api.Test;

import org.neo4j.scheduler.JobScheduler;
import org.neo4j.udc.UsageData;
import org.neo4j.udc.UsageDataKey;

import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
Expand Down

0 comments on commit df362b8

Please sign in to comment.