1 Star 1 Fork 0

attemper/attemper-document

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 2.60 KB
一键复制 编辑 原始数据 按行查看 历史
ldang264 提交于 2019-12-17 16:26 . all codes
<?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">
<groupId>com.github.attemper</groupId>
<artifactId>attemper-document</artifactId>
<version>0.9.8</version>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
<properties>
<commons.logging.version>1.2</commons.logging.version>
<maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version>
<dockerfile.maven.plugin.version>1.4.10</dockerfile.maven.plugin.version>
<docker.registryUrl>registry.ssecloud.com</docker.registryUrl>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</version>
</plugin>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${dockerfile.maven.plugin.version}</version>
<executions>
<execution>
<id>default</id>
<goals>
<goal>build</goal>
<goal>push</goal>
</goals>
</execution>
</executions>
<configuration>
<repository>${docker.registryUrl}/attemper/${project.artifactId}</repository>
<tag>${project.version}</tag>
<useMavenSettingsForAuth>true</useMavenSettingsForAuth>
</configuration>
<dependencies>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>${commons.logging.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>sse-releases</id>
<url>http://198.4.1.1:8088/repository/releases/</url>
</repository>
<snapshotRepository>
<id>sse-snapshots</id>
<url>http://198.4.1.1:8088/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/attemper/attemper-document.git
git@gitee.com:attemper/attemper-document.git
attemper
attemper-document
attemper-document
master

搜索帮助