Browse Source

Issue-#426: Standardize release procedure (WIP)

pull/429/head
Hiroshi Ukai 1 year ago
parent
commit
0378a07be0
1 changed files with 27 additions and 14 deletions
  1. 27
    14
      pom.xml

+ 27
- 14
pom.xml View File

@@ -28,7 +28,24 @@
<maven-bundle-plugin.version>3.3.0</maven-bundle-plugin.version>
<junit.version>[4.13.1,)</junit.version>
<hamcrest-all.version>1.3</hamcrest-all.version>
<maven-gpg-plugin.version>1.4</maven-gpg-plugin.version>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<organization>
<name>Shigeru Chiba, www.javassist.org</name>
</organization>
@@ -37,6 +54,7 @@
<system>JIRA</system>
<url>https://jira.jboss.org/jira/browse/JASSIST/</url>
</issueManagement>

<licenses>
<!-- this is the license under which javassist is usually distributed
-->
@@ -60,12 +78,20 @@
</licenses>

<scm>
<!-- BEGIN: Elements we need to rollback before merge
<connection>scm:git:git@github.com:jboss-javassist/javassist.git
</connection>
<developerConnection>
scm:git:git@github.com:jboss-javassist/javassist.git
</developerConnection>
<url>scm:git:git@github.com:jboss-javassist/javassist.git</url>
END: Elements we need to rollback before merge -->
<connection>scm:git:git@github.com/dakusui/${project.name}.git
</connection>
<developerConnection>scm:git:git@github.com:dakusui/${project.name}.git
</developerConnection>
<url>http://dakusui.github.io/${project.name}</url>
<tag>${project.name}-${project.version}</tag>
</scm>

<developers>
@@ -344,19 +370,6 @@ Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
</dependencies>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${hamcrest-all.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>


Loading…
Cancel
Save