当前仓库属于关闭状态,部分功能使用受限,详情请查阅 仓库状态说明
1 Star 0 Fork 0

守望时空33 / LinuxFileSelectorJ
关闭

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 3.51 KB
一键复制 编辑 原始数据 按行查看 历史
守望时空33 提交于 2020-10-14 22:50 . v1.1.12
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.gitee.swsk33</groupId>
<artifactId>linux-file-selector</artifactId>
<version>1.1.12</version>
<name>LinuxFileSelectorJ</name>
<packaging>jar</packaging>
<description>用于Linux的java文件选择器包。</description>
<url>https://gitee.com/swsk33/LinuxFileSelectorJ</url>
<!--maven工程配置 -->
<properties>
<java.version>1.8</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>${java.version}</maven.compiler.target>
</properties>
<!--许可证信息,根据自己的情况修改 -->
<licenses>
<license>
<name>GNU General Public License v2.0</name>
<url>https://www.gnu.org/</url>
<distribution>repo</distribution>
</license>
</licenses>
<!--托管仓库信息,根据自己的应用情况修改 -->
<scm>
<url>https://gitee.com/swsk33/LinuxFileSelectorJ</url>
<connection>https://gitee.com/swsk33/LinuxFileSelectorJ.git</connection>
<developerConnection>https://gitee.com/swsk33/LinuxFileSelectorJ</developerConnection>
</scm>
<!--开发者信息 -->
<developers>
<developer>
<name>swsk33</name>
<email>yanhanhui2001a@163.com</email>
<url>https://gitee.com/swsk33</url>
</developer>
</developers>
<!--仓库地址配置信息 -->
<distributionManagement>
<snapshotRepository>
<!--id 要与setting.xml server id一致 -->
<id>snapshot</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<!--id 要与setting.xml server id一致 -->
<id>release</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
<!--发布到oss.sonatype.org需要的组件,已经配置好,无需修改 -->
<build>
<!--配置资源文件打包进jar -->
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
<plugins>
<!--java source生成插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!--java doc生成插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!--gpg签名插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Java
1
https://gitee.com/swsk33/LinuxFileSelectorJ.git
git@gitee.com:swsk33/LinuxFileSelectorJ.git
swsk33
LinuxFileSelectorJ
LinuxFileSelectorJ
master

搜索帮助