Skip to content

Commit 9c08c55

Browse files
committed
添加 apache 模块到项目中,Apache 应该需要单独设置模块,因为 Apache 的内容通常还是比较多的
1 parent 9b9c4d4 commit 9c08c55

6 files changed

Lines changed: 62 additions & 0 deletions

File tree

.idea/compiler.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jpa.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apache/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Apache 模块
2+
3+
Apache 软件基金会是对 Java 开源包中贡献非常大的,很多优秀的代码都能够在 Apache 的开源包中找到。
4+

apache/pom.xml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.ossez.apache</groupId>
6+
<artifactId>apache</artifactId>
7+
<name>apache-modules</name>
8+
<packaging>pom</packaging>
9+
10+
<parent>
11+
<groupId>com.ossez</groupId>
12+
<artifactId>parent-modules</artifactId>
13+
<version>0.0.2-SNAPSHOT</version>
14+
<relativePath>../pom.xml</relativePath>
15+
</parent>
16+
17+
<modules>
18+
<module>apache-httpclient</module>
19+
</modules>
20+
21+
<dependencyManagement>
22+
<dependencies>
23+
<dependency>
24+
<groupId>junit</groupId>
25+
<artifactId>junit</artifactId>
26+
<version>${junit4.version}</version>
27+
<scope>test</scope>
28+
</dependency>
29+
30+
<dependency>
31+
<groupId>org.junit.jupiter</groupId>
32+
<artifactId>junit-jupiter</artifactId>
33+
<version>${junit-jupiter.version}</version>
34+
<scope>test</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.junit.vintage</groupId>
38+
<artifactId>junit-vintage-engine</artifactId>
39+
<version>${junit-jupiter.version}</version>
40+
<scope>test</scope>
41+
</dependency>
42+
</dependencies>
43+
</dependencyManagement>
44+
45+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
</licenses>
4040

4141
<modules>
42+
<module>apache</module>
4243
<module>core-java-modules</module>
4344
<module>image-compressing</module>
4445
<module>image-processing</module>

0 commit comments

Comments
 (0)