提交 eed27629 编写于 作者: B Bogdan Kobylynskyi

[maven-release-plugin] prepare for next development iteration

上级 6e038749
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<!-- Maven Central deployment -->
<server>
<id>ossrh</id>
<username>${env.SONATYPE_USERNAME}</username>
<password>${env.SONATYPE_PASSWORD}</password>
</server>
</servers>
<profiles>
<!-- Signing for Maven Central deployment -->
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>${env.GPG_EXECUTABLE}</gpg.executable>
<gpg.passphrase>${env.GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>
\ No newline at end of file
......@@ -3,7 +3,7 @@
<groupId>io.github.kobylynskyi</groupId>
<artifactId>graphql-codegen-maven-plugin</artifactId>
<version>5.7.2</version>
<version>5.7.2-SNAPSHOT</version>
<packaging>maven-plugin</packaging>
<name>graphql-codegen-maven-plugin</name>
......@@ -36,7 +36,7 @@
<developerConnection>scm:git:git@github.com:kobylynskyi/graphql-java-codegen.git
</developerConnection>
<url>https://github.com/kobylynskyi/graphql-java-codegen/tree/main/plugins/maven</url>
<tag>v5.7.2</tag>
<tag>HEAD</tag>
</scm>
<distributionManagement>
......@@ -80,6 +80,7 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${version.maven-plugin-api}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
......@@ -91,11 +92,13 @@
<artifactId>maven-shared-utils</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>${version.maven-shared-utils}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
......@@ -282,8 +285,7 @@
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
<name>gpg.passphrase</name>
</property>
</activation>
<build>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册