Skip to content
This repository has been archived by the owner on Jul 6, 2020. It is now read-only.

Commit

Permalink
Update dependency scope
Browse files Browse the repository at this point in the history
  • Loading branch information
ardikars committed Nov 12, 2018
2 parents 80824f8 + 036c45a commit bae64f0
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
2 changes: 1 addition & 1 deletion gradle/configure.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ext {

NAME = 'Jxpacket'
GROUP = 'com.ardikars.jxpacket'
VERSION = '1.1.0.RC16'
VERSION = '1.1.0.RC17'
DESCRIPTION = 'Jxpacket is a network packet crafting library for java.'

MAVEN_LOCAL_REPOSITORY = "${System.env.HOME}/.m2/repository"
Expand Down
13 changes: 7 additions & 6 deletions jxpacket-jxnet/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@

apply plugin: 'io.spring.dependency-management'

dependencies {
implementation ('com.ardikars.jxnet:jxnet-context')
implementation ('com.ardikars.jxnet:jxnet-core')
implementation project(':jxpacket-common')
implementation project(':jxpacket-core')
compile ('com.ardikars.common:common-net')
compile ('com.ardikars.common:common-util')
compile ('com.ardikars.jxnet:jxnet-context')
compile ('com.ardikars.jxnet:jxnet-core')
compile project(':jxpacket-common')
compile project(':jxpacket-core')
}

dependencyManagement {
imports {
mavenBom "com.ardikars.jxnet:jxnet:${JXNET_VERSION}"
mavenBom "com.ardikars.common:common:${COMMON_VERSION}"
}
}
14 changes: 11 additions & 3 deletions jxpacket-pcap4j/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@

dependencies {
compile group: 'org.pcap4j', name: 'pcap4j-core', version: '1.7.3'
implementation project(':jxpacket-common')
implementation project(':jxpacket-core')
compile ('com.ardikars.common:common-net')
compile ('com.ardikars.common:common-util')
compile ("org.pcap4j:pcap4j-core:1.7.3")
compile project(':jxpacket-common')
compile project(':jxpacket-core')
}

dependencyManagement {
imports {
mavenBom "com.ardikars.common:common:${COMMON_VERSION}"
}
}
9 changes: 2 additions & 7 deletions jxpacket-spring-boot-autoconfigure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,12 @@ dependencies {
implementation ("org.springframework.boot:spring-boot-autoconfigure")
implementation project(":jxpacket-jxnet")
implementation project(":jxpacket-pcap4j")
implementation project(":jxpacket-common")
implementation ("com.ardikars.common:common-net")
implementation ("com.ardikars.common:common-util")
implementation ("com.ardikars.jxnet:jxnet-context")
implementation ("com.ardikars.jxnet:jxnet-core")
}

dependencyManagement {
imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:${SPRING_BOOT_VERSION}")
mavenBom("com.ardikars.common:common:${COMMON_VERSION}")
mavenBom("com.ardikars.jxnet:jxnet:${JXNET_VERSION}")
mavenBom "com.ardikars.jxnet:jxnet:${JXNET_VERSION}"
mavenBom "com.ardikars.common:common:${COMMON_VERSION}"
}
}
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
<pmd xmlns="http://pmd.sourceforge.net/report/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/report/2.0.0 http://pmd.sourceforge.net/report_2_0_0.xsd"
version="6.5.0" timestamp="2018-11-11T20:46:48.484">
version="6.5.0" timestamp="2018-11-12T14:58:45.852">
<configerror rule="LoosePackageCoupling" msg="No packages or classes specified"/>
</pmd>

0 comments on commit bae64f0

Please sign in to comment.