Skip to content

Commit 8151bf4

Browse files
Ray KruegerRay Krueger
authored andcommitted
Had to add all sorts of instanity to get the release plugin working again.
The maven-scm-plugin and maven-release-plugin are crap and getting them to work with git is a joke.
1 parent 3220fd5 commit 8151bf4

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

‎pom.xml‎

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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/maven-v4_0_0.xsd">
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/maven-v4_0_0.xsd">
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>com.googlecode</groupId>
45
<artifactId>hibernate-memcached</artifactId>
@@ -123,6 +124,35 @@
123124
</execution>
124125
</executions>
125126
</plugin>
127+
<plugin>
128+
<groupId>org.apache.maven.plugins</groupId>
129+
<artifactId>maven-scm-plugin</artifactId>
130+
<version>1.2</version>
131+
<dependencies>
132+
<dependency>
133+
<groupId>org.apache.maven.scm</groupId>
134+
<artifactId>maven-scm-provider-gitexe</artifactId>
135+
<version>1.2</version>
136+
</dependency>
137+
</dependencies>
138+
</plugin>
139+
<plugin>
140+
<groupId>org.apache.maven.plugins</groupId>
141+
<artifactId>maven-release-plugin</artifactId>
142+
<version>2.0-beta-9</version>
143+
<dependencies>
144+
<dependency>
145+
<groupId>org.apache.maven.plugins</groupId>
146+
<artifactId>maven-scm-plugin</artifactId>
147+
<version>1.2</version>
148+
</dependency>
149+
<dependency>
150+
<groupId>org.apache.maven.scm</groupId>
151+
<artifactId>maven-scm-api</artifactId>
152+
<version>1.2</version>
153+
</dependency>
154+
</dependencies>
155+
</plugin>
126156
</plugins>
127157
</build>
128158

0 commit comments

Comments
 (0)