Skip to content

Commit 71ce180

Browse files
committed
修改目录位置
1 parent a2e8332 commit 71ce180

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+147
-100
lines changed

.idea/compiler.xml

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

.idea/misc.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.

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.cpucode</groupId>
8+
<artifactId>java</artifactId>
9+
<packaging>pom</packaging>
10+
<version>1.0-SNAPSHOT</version>
11+
12+
<modules>
13+
<module>artConcurrent</module>
14+
</modules>
15+
16+
17+
</project>

thread/README.md

Lines changed: 98 additions & 0 deletions

thread/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.cpucode</groupId>
8+
<artifactId>thread</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<build>
12+
<plugins>
13+
<!-- java编译插件 -->
14+
<plugin>
15+
<groupId>org.apache.maven.plugins</groupId>
16+
<artifactId>maven-compiler-plugin</artifactId>
17+
<version>3.2</version>
18+
<configuration>
19+
<source>1.8</source>
20+
<target>1.8</target>
21+
<encoding>UTF-8</encoding>
22+
</configuration>
23+
</plugin>
24+
</plugins>
25+
</build>
26+
27+
</project>

thread/src/com/cpucode/java/README.md

Lines changed: 0 additions & 98 deletions
This file was deleted.

thread/src/com/cpucode/java/create/thread/DifferenceThread.java renamed to thread/src/main/java/com/cpucode/java/create/thread/DifferenceThread.java

File renamed without changes.

thread/src/com/cpucode/java/create/thread/DoubleThread.java renamed to thread/src/main/java/com/cpucode/java/create/thread/DoubleThread.java

File renamed without changes.

thread/src/com/cpucode/java/create/thread/LambdaTest.java renamed to thread/src/main/java/com/cpucode/java/create/thread/LambdaTest.java

File renamed without changes.

thread/src/com/cpucode/java/create/thread/NewThread.java renamed to thread/src/main/java/com/cpucode/java/create/thread/NewThread.java

File renamed without changes.

0 commit comments

Comments
 (0)