From 036c45a64a3020554bb6464bf8e78c6c210e2f4e Mon Sep 17 00:00:00 2001 From: Ardika Rommy Sanjaya Date: Sun, 11 Nov 2018 20:40:02 +0700 Subject: [PATCH] Update scope --- gradle/configure.gradle | 4 ++-- jxpacket-spring-boot-autoconfigure/build.gradle | 8 +------- jxpacket-spring-boot-starter/build.gradle | 5 +++-- 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/gradle/configure.gradle b/gradle/configure.gradle index 8c8dcb6..3c8e7ee 100644 --- a/gradle/configure.gradle +++ b/gradle/configure.gradle @@ -7,7 +7,7 @@ ext { NAME = 'Jxpacket' GROUP = 'com.ardikars.jxpacket' - VERSION = '1.1.0.RC15' + VERSION = '1.1.0.RC16' DESCRIPTION = 'Jxpacket is a network packet crafting library for java.' MAVEN_LOCAL_REPOSITORY = "${System.env.HOME}/.m2/repository" @@ -122,7 +122,7 @@ ext { artifactId "jxpacket-spring-boot-starter" version "${VERSION}" } - + } defaultBlank = { closure -> diff --git a/jxpacket-spring-boot-autoconfigure/build.gradle b/jxpacket-spring-boot-autoconfigure/build.gradle index c21a2db..c170a49 100644 --- a/jxpacket-spring-boot-autoconfigure/build.gradle +++ b/jxpacket-spring-boot-autoconfigure/build.gradle @@ -1,16 +1,10 @@ -//apply plugin: 'io.spring.dependency-management' - dependencies { implementation ("org.springframework.boot:spring-boot-configuration-processor") implementation ("org.springframework.boot:spring-boot-autoconfigure") implementation project(":jxpacket-jxnet") implementation project(":jxpacket-pcap4j") - compile project(":jxpacket-common") - compile ("com.ardikars.common:common-net") - compile ("com.ardikars.common:common-util") - compile ("com.ardikars.jxnet:jxnet-context") - compile ("com.ardikars.jxnet:jxnet-core") + implementation project(":jxpacket-common") } dependencyManagement { diff --git a/jxpacket-spring-boot-starter/build.gradle b/jxpacket-spring-boot-starter/build.gradle index 0eb81d3..7505c84 100644 --- a/jxpacket-spring-boot-starter/build.gradle +++ b/jxpacket-spring-boot-starter/build.gradle @@ -1,8 +1,9 @@ dependencies { - compile ("com.ardikars.common:common-net") - compile ("com.ardikars.common:common-util") compile project(":jxpacket-spring-boot-autoconfigure") compile project(":jxpacket-common") compile project(":jxpacket-core") + compile project(":jxpacket-common") + implementation project(":jxpacket-jxnet") + implementation project(":jxpacket-pcap4j") }