Skip to content

Commit 280c4b1

Browse files
committed
fix error
1 parent 71c4fa0 commit 280c4b1

4 files changed

Lines changed: 9 additions & 35 deletions

File tree

basic-01/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
</parent>
88
<artifactId>basic-01</artifactId>
99
<packaging>pom</packaging>
10-
<modules>
11-
<module>../data-struct</module>
12-
</modules>
10+
1311
<modelVersion>4.0.0</modelVersion>
1412

1513
<dependencies>

basic-02/pom.xml

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,11 @@
77
</parent>
88
<artifactId>basic-02</artifactId>
99
<build>
10-
<plugins>
11-
<plugin>
12-
<groupId>org.apache.maven.plugins</groupId>
13-
<artifactId>maven-compiler-plugin</artifactId>
14-
<configuration>
15-
<source>1.8</source>
16-
<target>1.8</target>
17-
</configuration>
18-
</plugin>
19-
</plugins>
10+
2011
</build>
2112
<modelVersion>4.0.0</modelVersion>
2213

2314
<dependencies>
24-
25-
<dependency>
26-
<groupId>junit</groupId>
27-
<artifactId>junit</artifactId>
28-
<version>4.12</version>
29-
</dependency>
3015
<dependency>
3116
<groupId>org.apache.activemq</groupId>
3217
<artifactId>activemq-all</artifactId>
@@ -48,16 +33,12 @@
4833
<dependency>
4934
<groupId>junit</groupId>
5035
<artifactId>junit</artifactId>
51-
<version>4.12</version>
36+
<version>4.13.2</version>
5237
<scope>test</scope>
5338
</dependency>
5439

5540
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
56-
<dependency>
57-
<groupId>log4j</groupId>
58-
<artifactId>log4j</artifactId>
59-
<version>1.2.15</version>
60-
</dependency>
41+
6142
<!-- https://mvnrepository.com/artifact/com.yammer.metrics/metrics-annotation -->
6243
<dependency>
6344
<groupId>com.yammer.metrics</groupId>
@@ -94,11 +75,7 @@
9475
<artifactId>cglib</artifactId>
9576
<version>3.2.5</version>
9677
</dependency>
97-
<dependency>
98-
<groupId>junit</groupId>
99-
<artifactId>junit</artifactId>
100-
<version>4.12</version>
101-
</dependency>
78+
10279
<dependency>
10380
<groupId>com.google.guava</groupId>
10481
<artifactId>guava</artifactId>

basic-util/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>junit</groupId>
1616
<artifactId>junit</artifactId>
17-
<version>4.12</version>
17+
<version>4.13.2</version>
1818
</dependency>
1919

2020
<!--日志 start-->

data-struct/pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,18 @@
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<parent>
6-
<artifactId>basic-01</artifactId>
76
<groupId>com.yf</groupId>
7+
<artifactId>java-demo</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
9-
<relativePath>../basic-01/pom.xml</relativePath>
109
</parent>
1110
<modelVersion>4.0.0</modelVersion>
12-
1311
<artifactId>data-struct</artifactId>
12+
1413
<dependencies>
1514
<dependency>
1615
<groupId>junit</groupId>
1716
<artifactId>junit</artifactId>
18-
<version>4.12</version>
17+
<version>4.13.2</version>
1918
<scope>compile</scope>
2019
</dependency>
2120
</dependencies>

0 commit comments

Comments
 (0)