Skip to content

Commit

Permalink
Revert "Reverting back to 2.0.0"
Browse files Browse the repository at this point in the history
This reverts commit 1ca2a79.
  • Loading branch information
marcingrzejszczak committed Aug 17, 2021
1 parent 2f4df1d commit 67a538c
Showing 1 changed file with 26 additions and 3 deletions.
29 changes: 26 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.blogspot.toomuchcoding</groupId>
<artifactId>spock-subjects-collaborators-extension</artifactId>
<version>2.0.0</version>
<version>2.0.0-SNAPSHOT</version>
<name>spock-subjects-collaborators-extension</name>
<description>Spock extension that allows you to inject Collaborators into Subjects. Bases on Mockito's @InjectMocks functionality</description>
<url>https://github.com/marcingrzejszczak/spock-subjects-collaborators-extension</url>
Expand Down Expand Up @@ -37,7 +37,6 @@
<developerConnection>
scm:git:ssh://[email protected]/marcingrzejszczak/spock-subjects-collaborators-extension.git
</developerConnection>
<tag>v2.0.0</tag>
</scm>
<developers>
<developer>
Expand Down Expand Up @@ -82,6 +81,7 @@
<maven-javadoc-plugin.version>3.2.0</maven-javadoc-plugin.version>
<maven-source-plugin.version>3.2.1</maven-source-plugin.version>
<maven-gpg-plugin.version>1.6</maven-gpg-plugin.version>
<build-helper-maven-plugin.version>3.2.0</build-helper-maven-plugin.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -212,6 +212,29 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin.version}</version>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/${project.artifactId}-${project.version}-javadoc.jar</file>
<type>jar</type>
<classifier>javadoc</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
Expand Down Expand Up @@ -247,4 +270,4 @@
</build>
</profile>
</profiles>
</project>
</project>

0 comments on commit 67a538c

Please sign in to comment.