Skip to content

Commit e55eef1

Browse files
committed
构建Maven项目
1 parent ad69c59 commit e55eef1

20 files changed

Lines changed: 100 additions & 938 deletions

.classpath

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

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/target/
2+
3+
!.mvn/wrapper/maven-wrapper.jar
4+
5+
### STS ###
6+
.apt_generated
7+
.classpath
8+
.factorypath
9+
.project
10+
.settings
11+
.springBeans
12+
.sts4-cache
13+
14+
### IntelliJ IDEA ###
15+
.idea
16+
*.iws
17+
*.iml
18+
*.ipr
19+
20+
.mvn
21+
mvnw
22+
mvnw.cmd
23+
24+
### NetBeans ###
25+
/nbproject/private/
26+
/build/
27+
/nbbuild/
28+
/dist/
29+
/nbdist/
30+
/.nb-gradle/
31+

.idea/checkstyle-idea.xml

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

.idea/inspectionProfiles/Project_Default.xml

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

.idea/misc.xml

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

.idea/modules.xml

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

.idea/vcs.xml

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

.project

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

JavaGUI_UTF8.iml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module type="JAVA_MODULE" version="4">
2+
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
33
<component name="EclipseModuleManager">
44
<libelement value="file://libs/commons-lang3-3.5-sources.jar" />
55
<libelement value="file://libs/commons-lang3-3.5.jar" />
@@ -8,11 +8,12 @@
88
<src_folder value="file://$MODULE_DIR$/src" expected_position="0" />
99
</src_description>
1010
</component>
11-
<component name="NewModuleRootManager">
12-
<output url="file://$MODULE_DIR$/bin" />
13-
<exclude-output />
11+
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5">
12+
<output url="file://$MODULE_DIR$/target/classes" />
13+
<output-test url="file://$MODULE_DIR$/target/test-classes" />
1414
<content url="file://$MODULE_DIR$">
1515
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
16+
<excludeFolder url="file://$MODULE_DIR$/target" />
1617
</content>
1718
<orderEntry type="sourceFolder" forTests="false" />
1819
<orderEntry type="inheritedJdk" />
@@ -45,5 +46,13 @@
4546
<SOURCES />
4647
</library>
4748
</orderEntry>
49+
<orderEntry type="library" name="Maven: com.google.guava:guava:27.1-jre" level="project" />
50+
<orderEntry type="library" name="Maven: com.google.guava:failureaccess:1.0.1" level="project" />
51+
<orderEntry type="library" name="Maven: com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava" level="project" />
52+
<orderEntry type="library" name="Maven: com.google.code.findbugs:jsr305:3.0.2" level="project" />
53+
<orderEntry type="library" name="Maven: org.checkerframework:checker-qual:2.5.2" level="project" />
54+
<orderEntry type="library" name="Maven: com.google.errorprone:error_prone_annotations:2.2.0" level="project" />
55+
<orderEntry type="library" name="Maven: com.google.j2objc:j2objc-annotations:1.1" level="project" />
56+
<orderEntry type="library" name="Maven: org.codehaus.mojo:animal-sniffer-annotations:1.17" level="project" />
4857
</component>
4958
</module>

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>com.Table</groupId>
6+
<artifactId>T1</artifactId>
7+
<version>0.0.1-SNAPSHOT</version>
8+
<packaging>jar</packaging>
9+
10+
<name>Swing Projcect</name>
11+
<description>Swing的表格项目</description>
12+
13+
<properties>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
16+
<java.version>1.8</java.version>
17+
<skipTests>true</skipTests>
18+
</properties>
19+
20+
<dependencies>
21+
<dependency>
22+
<groupId>com.google.guava</groupId>
23+
<artifactId>guava</artifactId>
24+
<version>27.1-jre</version>
25+
</dependency>
26+
</dependencies>
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>org.springframework.boot</groupId>
31+
<artifactId>spring-boot-maven-plugin</artifactId>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
36+
<repositories><!-- 代码库 -->
37+
<repository>
38+
<id>maven-ali</id>
39+
<url>http://maven.aliyun.com/nexus/content/groups/public//</url>
40+
<releases>
41+
<enabled>true</enabled>
42+
</releases>
43+
<snapshots>
44+
<enabled>true</enabled>
45+
<updatePolicy>always</updatePolicy>
46+
<checksumPolicy>fail</checksumPolicy>
47+
</snapshots>
48+
</repository>
49+
</repositories>
50+
51+
</project>

0 commit comments

Comments
 (0)