1 Star 0 Fork 1

openKylin-backup/ovirt-engine-sdk-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pom.xml 4.25 KB
一键复制 编辑 原始数据 按行查看 历史
imjoey 提交于 2020-01-31 00:50 . Prepare for release 4.4.1
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2017 Joey <majunjiev@gmail.com>.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>org.ovirt.engine.api</groupId>
<artifactId>go-sdk-parent</artifactId>
<packaging>pom</packaging>
<version>4.4.1</version>
<name>oVirt Go SDK Parent</name>
<description>
Go SDK for the oVirt Engine API.
</description>
<url>http://www.ovirt.org</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<name>Joey</name>
<email>majunjiev@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/oVirt/ovirt-engine-sdk-go.git</connection>
<developerConnection>scm:git:git://github.com/oVirt/ovirt-engine-sdk-go.git</developerConnection>
<url>git://github.com/oVirt/ovirt-engine-sdk-go.git</url>
<tag>HEAD</tag>
</scm>
<properties>
<!-- Make sure that we always compile with UTF-8 encoding: -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Version of the metamodel and model used to generate the SDK: -->
<metamodel.version>1.3.0</metamodel.version>
<model.version>4.4.11</model.version>
<!-- The command used to start Go: -->
<go.command>go</go.command>
</properties>
<modules>
<module>generator</module>
<module>sdk</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.4</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.2</version>
<configuration>
<tagNameFormat>@{version}</tagNameFormat>
<pushChanges>false</pushChanges>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
</distributionManagement>
</project>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/openkylin-backup/ovirt-engine-sdk-go.git
git@gitee.com:openkylin-backup/ovirt-engine-sdk-go.git
openkylin-backup
ovirt-engine-sdk-go
ovirt-engine-sdk-go
master

搜索帮助