Skip to content

Commit f35d209

Browse files
author
Rakesh Pawar
committed
updated pom.xml
1 parent c4b359b commit f35d209

1 file changed

Lines changed: 59 additions & 1 deletion

File tree

pom.xml

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@
66
<packaging>maven-plugin</packaging>
77
<version>1.0</version>
88
<name>securekey-maven-plugin</name>
9-
<url>http://maven.apache.org</url>
9+
<url>https://github.com/pnrakesh/securekey-maven-plugin</url>
10+
11+
<scm>
12+
<url>https://github.com/pnrakesh/securekey-maven-plugin</url>
13+
<connection>scm:git:git@github.com:pnrakesh/securekey-maven-plugin.git</connection>
14+
<developerConnection>scm:git:git@github.com:pnrakesh/securekey-maven-plugin.git</developerConnection>
15+
<tag>HEAD</tag>
16+
</scm>
17+
18+
<parent>
19+
<groupId>org.sonatype.oss</groupId>
20+
<artifactId>oss-parent</artifactId>
21+
<version>9</version>
22+
</parent>
23+
1024
<dependencies>
1125
<dependency>
1226
<groupId>org.apache.maven</groupId>
@@ -41,5 +55,49 @@
4155
</configuration>
4256
</plugin>
4357
</plugins>
58+
59+
<pluginManagement>
60+
<plugins>
61+
<!-- remove M2E warning complaining about usage of maven-enforcer-plugin
62+
in parent -->
63+
<plugin>
64+
<groupId>org.eclipse.m2e</groupId>
65+
<artifactId>lifecycle-mapping</artifactId>
66+
<version>1.0.0</version>
67+
<configuration>
68+
<lifecycleMappingMetadata>
69+
<pluginExecutions>
70+
<pluginExecution>
71+
<pluginExecutionFilter>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-enforcer-plugin</artifactId>
74+
<versionRange>[1.0.0,)</versionRange>
75+
<goals>
76+
<goal>enforce</goal>
77+
</goals>
78+
</pluginExecutionFilter>
79+
<action>
80+
<ignore />
81+
</action>
82+
</pluginExecution>
83+
</pluginExecutions>
84+
</lifecycleMappingMetadata>
85+
</configuration>
86+
</plugin>
87+
88+
<!-- override version of GPG plugin to use new GPG signing features -->
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-gpg-plugin</artifactId>
92+
<version>1.5</version>
93+
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-release-plugin</artifactId>
97+
<version>2.4.2</version>
98+
</plugin>
99+
</plugins>
100+
</pluginManagement>
101+
44102
</build>
45103
</project>

0 commit comments

Comments
 (0)