Browse Source

上传文件至 'project'

main
wuqiuyu 3 weeks ago
parent
commit
78730a7a6c
  1. BIN
      project/202506050320-巫秋雨-期末实验报告.docx
  2. BIN
      project/articles.dat
  3. BIN
      project/datacollect-cli-0.1.0-jar-with-dependencies.jar
  4. BIN
      project/datacollect-cli-0.1.0.jar
  5. 52
      project/pom.xml

BIN
project/202506050320-巫秋雨-期末实验报告.docx

Binary file not shown.

BIN
project/articles.dat

Binary file not shown.

BIN
project/datacollect-cli-0.1.0-jar-with-dependencies.jar

Binary file not shown.

BIN
project/datacollect-cli-0.1.0.jar

Binary file not shown.

52
project/pom.xml

@ -0,0 +1,52 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>datacollect-cli</artifactId>
<version>0.1.0</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.17.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<mainClass>com.example.datacollect.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Loading…
Cancel
Save