Skip to content

Commit

Permalink
Issue-jboss-javassist#426: Standardize release procedure (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
dakusui committed Aug 31, 2022
1 parent 5faa1d9 commit 0378a07
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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
-->
Expand All @@ -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>
Expand Down Expand Up @@ -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>

0 comments on commit 0378a07

Please sign in to comment.