开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
forked from 10km/common-java
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
标签 (62)
master
common-1.1.50
common-1.1.49
common-1.1.48
common-1.1.47
common-1.1.46
common-1.1.45
common-1.1.44
common-1.1.43
common-1.1.42
common-1.1.41
common-1.1.40
common-1.1.39
common-1.1.38
common-1.1.37
common-1.1.36
common-1.1.35
common-1.1.34
common-1.1.33
common-1.1.32
common-1.1.31
master
分支 (1)
标签 (62)
master
common-1.1.50
common-1.1.49
common-1.1.48
common-1.1.47
common-1.1.46
common-1.1.45
common-1.1.44
common-1.1.43
common-1.1.42
common-1.1.41
common-1.1.40
common-1.1.39
common-1.1.38
common-1.1.37
common-1.1.36
common-1.1.35
common-1.1.34
common-1.1.33
common-1.1.32
common-1.1.31
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
标签 (62)
master
common-1.1.50
common-1.1.49
common-1.1.48
common-1.1.47
common-1.1.46
common-1.1.45
common-1.1.44
common-1.1.43
common-1.1.42
common-1.1.41
common-1.1.40
common-1.1.39
common-1.1.38
common-1.1.37
common-1.1.36
common-1.1.35
common-1.1.34
common-1.1.33
common-1.1.32
common-1.1.31
common-java
/
pom.xml
common-java
/
pom.xml
pom.xml 3.33 KB
一键复制 编辑 原始数据 按行查看 历史
10km 提交于 2020年02月24日 14:27 +08:00 . [maven-release-plugin] prepare for next development iteration
<?xml version="1.0" encoding="UTF-8"?>
<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>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<groupId>com.gitee.l0km</groupId>
<artifactId>common</artifactId>
<name>common aggregator</name>
<version>1.1.51-SNAPSHOT</version>
<packaging>pom</packaging>
<url>https://gitee.com/l0km</url>
<properties>
<skipTests>true</skipTests>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<detectLinks>false</detectLinks>
<detectOfflineLinks>true</detectOfflineLinks>
<linksource>true</linksource>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<versionRange>[1.0.0,)</versionRange>
<goals>
<goal>enforce</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<!-- 跳过测试 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<skipTests>${skipTests}</skipTests>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<modules>
<module>common-base</module>
<module>common-image</module>
<module>common-image-android</module>
<module>common-bean</module>
<module>common-cli</module>
<module>common-swift-metadata</module>
<module>common-thrift</module>
<module>common-thrifty</module>
<module>common-base2</module>
</modules>
<licenses>
<license>
<name>The 2-Clause BSD License</name>
<url>https://gitee.com/l0km/common-java/tree/master/LICENSE</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>guyadong</name>
<email>10km0811@sohu.com</email>
<url>https://gitee.com/l0km</url>
</developer>
</developers>
<scm>
<connection>scm:git:https://gitee.com/l0km/common-java.git</connection>
<developerConnection>scm:git:https://gitee.com/l0km/common-java.git</developerConnection>
<url>https://gitee.com/l0km/common-java</url>
</scm>
</project>
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

java 公用模块
暂无标签
BSD-2-Clause
使用 BSD-2-Clause 开源许可协议
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/Component_Technology/common-java.git
git@gitee.com:Component_Technology/common-java.git
Component_Technology
common-java
common-java
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /