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

Commit

Permalink
Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ardikars committed Nov 12, 2018
1 parent 353fdf5 commit c5782ea
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 15 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.RC20'
VERSION = '1.1.0.RC21'
DESCRIPTION = 'Jxpacket is a network packet crafting library for java.'

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

dependencies {
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')
implementation ('com.ardikars.common:common-net')
implementation ('com.ardikars.common:common-util')
implementation ('com.ardikars.jxnet:jxnet-context')
implementation ('com.ardikars.jxnet:jxnet-core')
implementation project(':jxpacket-common')
implementation project(':jxpacket-core')
}

dependencyManagement {
Expand Down
8 changes: 4 additions & 4 deletions jxpacket-pcap4j/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

dependencies {
compile ('com.ardikars.common:common-net')
compile ('com.ardikars.common:common-util')
implementation ('com.ardikars.common:common-net')
implementation ('com.ardikars.common:common-util')
implementation ("org.pcap4j:pcap4j-core:${PCAP4J_VERSION}")
compile project(':jxpacket-common')
compile project(':jxpacket-core')
implementation project(':jxpacket-common')
implementation project(':jxpacket-core')
}

dependencyManagement {
Expand Down
3 changes: 3 additions & 0 deletions jxpacket-spring-boot-autoconfigure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ dependencies {
implementation ("org.springframework.boot:spring-boot-configuration-processor")
implementation ("org.springframework.boot:spring-boot-autoconfigure")
implementation ("org.pcap4j:pcap4j-core:${PCAP4J_VERSION}")
implementation ("com.ardikars.jxnet:jxnet-context")
implementation ("com.ardikars.jxnet:jxnet-core")
implementation project(":jxpacket-common")
implementation project(":jxpacket-jxnet")
implementation project(":jxpacket-pcap4j")
}
Expand Down
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-12T18:02:21.758">
version="6.5.0" timestamp="2018-11-12T18:53:16.101">
<configerror rule="LoosePackageCoupling" msg="No packages or classes specified"/>
</pmd>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Manifest-Version: 1.0
Implementation-Title: Jxnet
Implementation-Version: 1.1.0.RC19
Implementation-Version: 1.1.0.RC21

12 changes: 10 additions & 2 deletions jxpacket-spring-boot-starter/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@

dependencies {
implementation project(":jxpacket-spring-boot-autoconfigure")
compile project(":jxpacket-common")
compile project(":jxpacket-spring-boot-autoconfigure")
compile project(":jxpacket-core")
compile project(":jxpacket-common")
compile ("com.ardikars.common:common-net")
compile ("com.ardikars.common:common-util")
implementation project(":jxpacket-jxnet")
implementation project(":jxpacket-pcap4j")
}

dependencyManagement {
imports {
mavenBom "com.ardikars.jxnet:jxnet:${JXNET_VERSION}"
mavenBom "com.ardikars.common:common:${COMMON_VERSION}"
}
}

0 comments on commit c5782ea

Please sign in to comment.