Skip to content

Commit 697ef22

Browse files
committed
perfom release
1 parent 93b83ea commit 697ef22

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

pom.xml

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<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">
32
<modelVersion>4.0.0</modelVersion>
43
<groupId>org.audit4j</groupId>
54
<artifactId>audit4j-core</artifactId>
@@ -23,7 +22,8 @@
2322
<connection>scm:git:[email protected]:audit4j/audit4j-core.git</connection>
2423
<developerConnection>scm:git:[email protected]:audit4j/audit4j-core.git</developerConnection>
2524
<url>scm:git:[email protected]:audit4j/audit4j-core.git</url>
26-
</scm>
25+
<tag>1.0.0</tag>
26+
</scm>
2727
<developers>
2828
<developer>
2929
<id>janith</id>
@@ -38,6 +38,12 @@
3838
</developer>
3939
</developers>
4040

41+
<parent>
42+
<groupId>org.sonatype.oss</groupId>
43+
<artifactId>oss-parent</artifactId>
44+
<version>7</version>
45+
</parent>
46+
4147
<properties>
4248
<slf4j.version>1.7.5</slf4j.version>
4349
</properties>
@@ -112,6 +118,14 @@
112118
</execution>
113119
</executions>
114120
</plugin>
121+
<plugin>
122+
<groupId>org.apache.maven.plugins</groupId>
123+
<artifactId>maven-release-plugin</artifactId>
124+
<version>2.5</version>
125+
<configuration>
126+
<tagNameFormat>v@{project.version}</tagNameFormat>
127+
</configuration>
128+
</plugin>
115129
<plugin>
116130
<groupId>org.apache.maven.plugins</groupId>
117131
<artifactId>maven-eclipse-plugin</artifactId>

release.properties

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#release configuration
2+
#Fri Jun 20 08:45:48 IST 2014
3+
scm.tagNameFormat=v@{project.version}
4+
pushChanges=true
5+
scm.url=scm\:git\:[email protected]\:audit4j/audit4j-core.git
6+
preparationGoals=clean verify
7+
remoteTagging=true
8+
scm.commentPrefix=[maven-release-plugin]
9+
exec.additionalArguments=-Psonatype-oss-release
10+
exec.snapshotReleasePluginAllowed=false
11+
completedPhase=check-poms

0 commit comments

Comments
 (0)