|
6 | 6 | <packaging>maven-plugin</packaging> |
7 | 7 | <version>1.0</version> |
8 | 8 | <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 | + |
10 | 24 | <dependencies> |
11 | 25 | <dependency> |
12 | 26 | <groupId>org.apache.maven</groupId> |
|
41 | 55 | </configuration> |
42 | 56 | </plugin> |
43 | 57 | </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 | + |
44 | 102 | </build> |
45 | 103 | </project> |
0 commit comments